3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/maxminddb/default.nix

27 lines
548 B
Nix
Raw Normal View History

{ buildPythonPackage, lib, fetchPypi
, ipaddress
, mock
, nose
}:
buildPythonPackage rec {
2019-12-29 09:28:07 +00:00
version = "1.5.2";
pname = "maxminddb";
src = fetchPypi {
inherit pname version;
2019-12-29 09:28:07 +00:00
sha256 = "d0ce131d901eb11669996b49a59f410efd3da2c6dbe2c0094fe2fef8d85b6336";
};
propagatedBuildInputs = [ ipaddress ];
checkInputs = [ nose mock ];
meta = with lib; {
description = "Reader for the MaxMind DB format";
homepage = "https://www.maxmind.com/en/home";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}