pythonPackages.maxminddb: init at 1.4.1

This commit is contained in:
Jonathan Ringer 2019-07-04 08:27:15 -07:00
parent 78f9c2d173
commit 4f1a6fde14
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildPythonPackage, lib, fetchPypi
, ipaddress
, mock
, nose
}:
buildPythonPackage rec {
version = "1.4.1";
pname = "maxminddb";
src = fetchPypi {
inherit pname version;
sha256 = "04mpilsj76m29id5xfi8mmasdmh27ldn7r0dmh2rj6a8v2y5256z";
};
propagatedBuildInputs = [ ipaddress ];
checkInputs = [ nose mock ];
meta = with lib; {
description = "Reader for the MaxMind DB format";
homepage = "https://www.maxmind.com/en/home";
license = licenses.apsl20;
maintainers = with maintainers; [ ];
};
}

View File

@ -546,6 +546,8 @@ in {
matchpy = callPackage ../development/python-modules/matchpy { };
maxminddb = callPackage ../development/python-modules/maxminddb { };
monty = callPackage ../development/python-modules/monty { };
mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py;