python.pkgs.portend: init at 2.1.2
This commit is contained in:
parent
1041009a92
commit
dc6d287dcf
23
pkgs/development/python-modules/portend/default.nix
Normal file
23
pkgs/development/python-modules/portend/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -16638,6 +16638,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
portend = callPackage ../development/python-modules/portend { };
|
||||
|
||||
powerline = callPackage ../development/python-modules/powerline { };
|
||||
|
||||
pox = buildPythonPackage rec {
|
||||
|
Loading…
x
Reference in New Issue
Block a user