Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
python3Packages,
|
|
util-linux,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "isisdl";
|
|
version = "1.3.21";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-YyR0A7NqmUcR+hQnQlIgBdU6CxfHtDOjR3q5I21ROCI=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|