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
34 lines
738 B
Nix
34 lines
738 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "nyx";
|
|
version = "2.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "02rrlllz2ci6i6cs3iddyfns7ang9a54jrlygd2jw1f9s6418ll8";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
dependencies = with python3Packages; [ stem ];
|
|
|
|
# ./run_tests.py returns `TypeError: testFailure() takes exactly 1 argument`
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "nyx" ];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line monitor for Tor";
|
|
mainProgram = "nyx";
|
|
homepage = "https://nyx.torproject.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ offline ];
|
|
};
|
|
}
|