2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2019-12-22 01:16:31 +00:00
|
|
|
, pytest, setuptools_scm, tempora, pytest-black, pytestcov }:
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "portend";
|
2020-11-29 14:04:36 +00:00
|
|
|
version = "2.7.0";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:36 +00:00
|
|
|
sha256 = "ac0e57ae557f75dc47467579980af152e8f60bc2139547eff8469777d9110379";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 22:53:13 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pytest.ini --replace "--flake8" ""
|
|
|
|
'';
|
|
|
|
|
2018-04-20 12:00:23 +01:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ tempora ];
|
|
|
|
|
2019-12-22 01:16:31 +00:00
|
|
|
checkInputs = [ pytest pytest-black pytestcov ];
|
2018-04-20 12:00:23 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-07-21 10:22:00 +01:00
|
|
|
py.test --deselect=test_portend.py::TestChecker::test_check_port_listening
|
2018-04-20 12:00:23 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-14 12:35:35 +01:00
|
|
|
# Some of the tests use localhost networking.
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-05 10:16:41 +01:00
|
|
|
description = "Monitor TCP ports for bound or unbound states";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jaraco/portend";
|
2017-09-05 10:16:41 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|