2017-09-05 09:16:41 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2018-04-20 11:00:23 +00:00
|
|
|
, pytest, setuptools_scm, tempora }:
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "portend";
|
2018-06-12 16:47:04 +00:00
|
|
|
version = "2.3";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 16:47:04 +00:00
|
|
|
sha256 = "b7ce7d35ea262415297cbfea86226513e77b9ee5f631d3baa11992d663963719";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 11:00:23 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ tempora ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2017-09-05 09:16:41 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Monitor TCP ports for bound or unbound states";
|
|
|
|
homepage = https://github.com/jaraco/portend;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|