2017-11-14 20:30:47 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "portpicker";
|
2019-04-02 18:36:53 +02:00
|
|
|
version = "1.3.1";
|
2017-11-14 20:30:47 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 18:36:53 +02:00
|
|
|
sha256 = "0rwn5ca7ns3yh6bp785zdd2l4018ccpd5i0m2d1fsd9nhxvcgkfj";
|
2017-11-14 20:30:47 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|