3
0
Fork 0
forked from mirrors/nixpkgs

nyx: init at 2.0.4 (#43139)

This commit is contained in:
Jaka Hudoklin 2018-07-07 17:03:20 +02:00 committed by Robert Schütz
parent 52d4d73757
commit 499203e199
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, pythonPackages }:
with pythonPackages;
buildPythonApplication rec {
pname = "nyx";
version = "2.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "0pm7vfcqr02pzqz4b2f6sw5prxxmgqwr1912am42xmy2i53n7nrq";
};
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/;
license = licenses.gpl3;
maintainers = with maintainers; [ offline ];
};
}

View file

@ -1391,6 +1391,8 @@ with pkgs;
nwipe = callPackage ../tools/security/nwipe { };
nyx = callPackage ../tools/networking/nyx { };
onboard = callPackage ../applications/misc/onboard { };
optar = callPackage ../tools/graphics/optar {};