nixpkgs/pkgs/tools/networking/nyx/default.nix
R. RyanTM 43709307f1 nyx: 2.0.4 -> 2.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nyx/versions
2019-01-27 20:11:38 -08:00

26 lines
574 B
Nix

{ lib, pythonPackages }:
with pythonPackages;
buildPythonApplication rec {
pname = "nyx";
version = "2.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "02rrlllz2ci6i6cs3iddyfns7ang9a54jrlygd2jw1f9s6418ll8";
};
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 ];
};
}