python37Packages.maxminddb: 1.4.1 -> 1.5.1 (#70742)

* python37Packages.maxminddb: 1.4.1 -> 1.5.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-maxminddb/versions

* pythonPackages.maxminddb: fix license

Should be "asl20" (Apache License 2.0) and not
"apsl20" (Apple Public Source License 2.0)
This commit is contained in:
R. RyanTM
2019-10-18 17:14:10 +02:00
committed by Renaud
parent 2d28753c4c
commit 4b0508a585
@@ -5,12 +5,12 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.4.1"; version = "1.5.1";
pname = "maxminddb"; pname = "maxminddb";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "04mpilsj76m29id5xfi8mmasdmh27ldn7r0dmh2rj6a8v2y5256z"; sha256 = "0y9giw81k4wdmpryr4k42w50z292mf364a6vs1vxf83ksc9ig6j4";
}; };
propagatedBuildInputs = [ ipaddress ]; propagatedBuildInputs = [ ipaddress ];
@@ -20,7 +20,7 @@ buildPythonPackage rec {
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";
license = licenses.apsl20; license = licenses.asl20;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };
} }