portpicker: init at 1.2.0

This commit is contained in:
Dan Haraj 2017-11-14 14:30:47 -05:00
parent 1327d09793
commit 2201774048
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "portpicker";
version = "1.2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0c1lm3i4yngi1qclb0hny19vwjd2si5k2qni30wcrnxqqasqak1y";
};
meta = {
description = "A library to choose unique available network ports.";
homepage = "https://github.com/google/python_portpicker";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ danharaj ];
};
}

View File

@ -3345,6 +3345,8 @@ in {
''; '';
}; };
portpicker = callPackage ../development/python-modules/portpicker { };
pkginfo = buildPythonPackage rec { pkginfo = buildPythonPackage rec {
version = "1.3.2"; version = "1.3.2";
name = "pkginfo-${version}"; name = "pkginfo-${version}";