pythonPackages.maxminddb: 1.5.2 -> 1.5.4 (#92793)
This commit is contained in:
parent
9a3c1892ee
commit
386ebbccf0
@ -1,4 +1,6 @@
|
|||||||
{ buildPythonPackage, lib, fetchPypi
|
{ stdenv, lib, buildPythonPackage, pythonAtLeast
|
||||||
|
, fetchPypi
|
||||||
|
, libmaxminddb
|
||||||
, ipaddress
|
, ipaddress
|
||||||
, mock
|
, mock
|
||||||
, nose
|
, nose
|
||||||
@ -13,10 +15,15 @@ buildPythonPackage rec {
|
|||||||
sha256 = "f4d28823d9ca23323d113dc7af8db2087aa4f657fafc64ff8f7a8afda871425b";
|
sha256 = "f4d28823d9ca23323d113dc7af8db2087aa4f657fafc64ff8f7a8afda871425b";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libmaxminddb ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ ipaddress ];
|
propagatedBuildInputs = [ ipaddress ];
|
||||||
|
|
||||||
checkInputs = [ nose mock ];
|
checkInputs = [ nose mock ];
|
||||||
|
|
||||||
|
# Tests are broken for macOS on python38
|
||||||
|
doCheck = !(stdenv.isDarwin && pythonAtLeast "3.8");
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Reader for the MaxMind DB format";
|
description = "Reader for the MaxMind DB format";
|
||||||
homepage = "https://www.maxmind.com/en/home";
|
homepage = "https://www.maxmind.com/en/home";
|
||||||
|
Loading…
Reference in New Issue
Block a user