nixpkgs/pkgs/development/python-modules/portend/default.nix

37 lines
933 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pytest, setuptools_scm, tempora, pytest-black, pytestcov }:
buildPythonPackage rec {
pname = "portend";
2019-12-19 19:31:17 +00:00
version = "2.6";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:17 +00:00
sha256 = "600dd54175e17e9347e5f3d4217aa8bcf4bf4fa5ffbc4df034e5ec1ba7cdaff5";
};
2019-11-09 12:02:24 +00:00
patches = [ ./black-19.10b0.patch ];
postPatch = ''
substituteInPlace pytest.ini --replace "--flake8" ""
'';
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ tempora ];
checkInputs = [ pytest pytest-black pytestcov ];
checkPhase = ''
2019-07-21 09:22:00 +00:00
py.test --deselect=test_portend.py::TestChecker::test_check_port_listening
'';
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
meta = with stdenv.lib; {
description = "Monitor TCP ports for bound or unbound states";
homepage = "https://github.com/jaraco/portend";
license = licenses.bsd3;
};
}