5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
35 lines
702 B
Nix
35 lines
702 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
psutil,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "portpicker";
|
|
version = "1.6.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-vVB/1vlvZe4CeB8uZ06dxsmbv6bjw5mS45FiBMnUMfo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ psutil ];
|
|
|
|
pythonImportsCheck = [ "portpicker" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to choose unique available network ports";
|
|
mainProgram = "portserver.py";
|
|
homepage = "https://github.com/google/python_portpicker";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|