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

23 lines
513 B
Nix
Raw Normal View History

2017-11-14 19:30:47 +00:00
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "portpicker";
version = "1.5.0";
2021-06-19 00:38:32 +01:00
format = "pyproject";
2017-11-14 19:30:47 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "e13b148008adeb2793cf8b55bcd20fdcec4f763f2d3bf3c45f5e5e5d1df7d228";
2017-11-14 19:30:47 +00:00
};
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 ];
};
}