mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
isisdl: init at 1.3.20
This commit is contained in:
parent
1833044e66
commit
62ec584ddf
58
pkgs/by-name/is/isisdl/package.nix
Normal file
58
pkgs/by-name/is/isisdl/package.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
python3Packages,
|
||||
util-linux,
|
||||
}:
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "isisdl";
|
||||
version = "1.3.20";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-s0vGCJVSa6hf6/sIhzmaxpziP4izoRwcZfxvm//5inY=";
|
||||
};
|
||||
|
||||
pyproject = true;
|
||||
|
||||
build-system = with python3Packages; [ setuptools ];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
cryptography
|
||||
requests
|
||||
pyyaml
|
||||
packaging
|
||||
colorama
|
||||
pyinotify
|
||||
distro
|
||||
psutil
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"cryptography"
|
||||
"requests"
|
||||
"packaging"
|
||||
"distro"
|
||||
"psutil"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
util-linux # for runtime dependency `lsblk`
|
||||
];
|
||||
|
||||
# disable tests since they require valid login credentials
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/Emily3403/isisdl";
|
||||
description = "Downloader for ISIS of TU-Berlin";
|
||||
longDescription = ''
|
||||
A downloading utility for ISIS of TU-Berlin.
|
||||
Download all your files and videos from ISIS.
|
||||
'';
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ bchmnn ];
|
||||
mainProgram = "isisdl";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue