biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / nyx / default.nix
blobcb697e0f5e669c88137bf8c3b934affc04b59fb5
1 { lib, python3Packages, fetchPypi }:
3 with python3Packages;
5 buildPythonApplication rec {
6   pname = "nyx";
7   version = "2.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "02rrlllz2ci6i6cs3iddyfns7ang9a54jrlygd2jw1f9s6418ll8";
12   };
14   propagatedBuildInputs = [ stem ];
16   # ./run_tests.py returns `TypeError: testFailure() takes exactly 1 argument`
17   doCheck = false;
19   meta = with lib; {
20     description = "Command-line monitor for Tor";
21     mainProgram = "nyx";
22     homepage = "https://nyx.torproject.org/";
23     license = licenses.gpl3;
24     maintainers = with maintainers; [ offline ];
25   };