forked from mirrors/nixpkgs
nyx: init at 2.0.4 (#43139)
This commit is contained in:
parent
52d4d73757
commit
499203e199
25
pkgs/tools/networking/nyx/default.nix
Normal file
25
pkgs/tools/networking/nyx/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue