nixpkgs/pkgs/tools/networking/nyx/default.nix

26 lines
578 B
Nix
Raw Normal View History

2020-04-06 17:14:08 +00:00
{ lib, python3Packages }:
2018-07-07 15:03:20 +00:00
2020-04-06 17:14:08 +00:00
with python3Packages;
2018-07-07 15:03:20 +00:00
buildPythonApplication rec {
pname = "nyx";
version = "2.1.0";
2018-07-07 15:03:20 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "02rrlllz2ci6i6cs3iddyfns7ang9a54jrlygd2jw1f9s6418ll8";
2018-07-07 15:03:20 +00:00
};
propagatedBuildInputs = [ stem ];
# ./run_tests.py returns `TypeError: testFailure() takes exactly 1 argument`
doCheck = false;
meta = with lib; {
description = "Command-line monitor for Tor";
homepage = "https://nyx.torproject.org/";
2018-07-07 15:03:20 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ offline ];
};
}