nixpkgs/pkgs/development/python-modules/portpicker/default.nix
R. RyanTM 62ee61ee61 python37Packages.portpicker: 1.3.0 -> 1.3.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-portpicker/versions

(cherry picked from commit e2612d43cbf468b4bce090528cee716da668c7a7)
2019-04-07 13:53:39 +02:00

22 lines
477 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "portpicker";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "0rwn5ca7ns3yh6bp785zdd2l4018ccpd5i0m2d1fsd9nhxvcgkfj";
};
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 ];
};
}