mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
portpicker: init at 1.2.0
This commit is contained in:
parent
1327d09793
commit
2201774048
22
pkgs/development/python-modules/portpicker/default.nix
Normal file
22
pkgs/development/python-modules/portpicker/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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}";
|
||||||
|
Loading…
Reference in New Issue
Block a user