Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 477 B view raw
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "portpicker"; 8 version = "1.3.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0rwn5ca7ns3yh6bp785zdd2l4018ccpd5i0m2d1fsd9nhxvcgkfj"; 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}