mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
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
|
||||
, mock
|
||||
, nose
|
||||
@ -13,10 +15,15 @@ buildPythonPackage rec {
|
||||
sha256 = "f4d28823d9ca23323d113dc7af8db2087aa4f657fafc64ff8f7a8afda871425b";
|
||||
};
|
||||
|
||||
buildInputs = [ libmaxminddb ];
|
||||
|
||||
propagatedBuildInputs = [ ipaddress ];
|
||||
|
||||
checkInputs = [ nose mock ];
|
||||
|
||||
# Tests are broken for macOS on python38
|
||||
doCheck = !(stdenv.isDarwin && pythonAtLeast "3.8");
|
||||
|
||||
meta = with lib; {
|
||||
description = "Reader for the MaxMind DB format";
|
||||
homepage = "https://www.maxmind.com/en/home";
|
||||
|
Loading…
Reference in New Issue
Block a user