python.pkgs.portend: init at 2.1.2

This commit is contained in:
Jörg Thalheim 2017-08-27 15:20:01 +01:00 committed by Frederik Rietdijk
parent 1041009a92
commit dc6d287dcf
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytest-sugar, pytest-warnings, setuptools_scm
, tempora }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "portend";
version = "2.1.2";
buildInputs = [ pytest pytest-sugar pytest-warnings setuptools_scm ];
propagatedBuildInputs = [ tempora ];
src = fetchPypi {
inherit pname version;
sha256 = "0dx8b1rn64ymx5s4mdzlw5hz59qi167z7nny36dl75ghlldn41w4";
};
meta = with stdenv.lib; {
description = "Monitor TCP ports for bound or unbound states";
homepage = https://github.com/jaraco/portend;
license = lib.licenses.bsd3;
};
}

View File

@ -16638,6 +16638,8 @@ in {
};
};
portend = callPackage ../development/python-modules/portend { };
powerline = callPackage ../development/python-modules/powerline { };
pox = buildPythonPackage rec {