1{ buildPythonPackage
2, lib
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "portpicker";
8 version = "1.3.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "19c0f950x544ndsdkfhga58x69iiin2vqiz59pqn9mymk2vrlpkg";
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}