feat: add isisdl overlay
This commit is contained in:
parent
6f14d08d92
commit
d01221fd65
4 changed files with 43 additions and 0 deletions
40
overlays/isisdl.nix
Normal file
40
overlays/isisdl.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchPypi
|
||||
, cryptography
|
||||
, requests
|
||||
, pyyaml
|
||||
, packaging
|
||||
, colorama
|
||||
, pyinotify
|
||||
, distro
|
||||
, psutil
|
||||
}:
|
||||
buildPythonApplication rec {
|
||||
pname = "isisdl";
|
||||
version = "1.3.19";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-VcqaFqcoH+d1NpKq7QBVbXcbe0HfZ67kStGFiYmr/kE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
requests
|
||||
pyyaml
|
||||
packaging
|
||||
colorama
|
||||
pyinotify
|
||||
distro
|
||||
psutil
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Emily3403/isisdl";
|
||||
description = "A downloader for ISIS of TU-Berlin";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue