pythonPackages.maxminddb: init at 1.4.1
This commit is contained in:
parent
78f9c2d173
commit
4f1a6fde14
|
@ -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; [ ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -546,6 +546,8 @@ in {
|
||||||
|
|
||||||
matchpy = callPackage ../development/python-modules/matchpy { };
|
matchpy = callPackage ../development/python-modules/matchpy { };
|
||||||
|
|
||||||
|
maxminddb = callPackage ../development/python-modules/maxminddb { };
|
||||||
|
|
||||||
monty = callPackage ../development/python-modules/monty { };
|
monty = callPackage ../development/python-modules/monty { };
|
||||||
|
|
||||||
mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py;
|
mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py;
|
||||||
|
|
Loading…
Reference in New Issue