mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pferd: init at 3.0.1
This commit is contained in:
parent
326eb72c9d
commit
793616b5e6
2 changed files with 34 additions and 0 deletions
32
pkgs/tools/misc/pferd/default.nix
Normal file
32
pkgs/tools/misc/pferd/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "pferd";
|
||||
version = "3.0.1";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Garmelon";
|
||||
repo = "PFERD";
|
||||
rev = "v${version}";
|
||||
sha256 = "1s0z8yajy3n194pnlqb48hy2n5qvhkzwbpksrdyds79vfq0b9rdl";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
aiohttp
|
||||
beautifulsoup4
|
||||
rich
|
||||
keyring
|
||||
certifi
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Garmelon/PFERD";
|
||||
description = "Tool for downloading course-related files from ILIAS";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ _0xbe7a ];
|
||||
};
|
||||
}
|
|
@ -860,6 +860,8 @@ in
|
|||
|
||||
metapixel = callPackage ../tools/graphics/metapixel { };
|
||||
|
||||
pferd = callPackage ../tools/misc/pferd {};
|
||||
|
||||
quich = callPackage ../tools/misc/quich { } ;
|
||||
|
||||
tfk8s = callPackage ../tools/misc/tfk8s { };
|
||||
|
|
Loading…
Reference in a new issue