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