1{ buildPythonPackage
2, lib
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "portpicker";
8 version = "1.2.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0c1lm3i4yngi1qclb0hny19vwjd2si5k2qni30wcrnxqqasqak1y";
13 };
14
15 meta = {
16 description = "A library to choose unique available network ports.";
17 homepage = "https://github.com/google/python_portpicker";
18 license = lib.licenses.asl20;
19 maintainers = with lib.maintainers; [ danharaj ];
20 };
21}