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 08:14:10 -07:00 committed by Renaud
parent 2d28753c4c
commit 4b0508a585

View File

@ -5,12 +5,12 @@
}:
buildPythonPackage rec {
version = "1.4.1";
version = "1.5.1";
pname = "maxminddb";
src = fetchPypi {
inherit pname version;
sha256 = "04mpilsj76m29id5xfi8mmasdmh27ldn7r0dmh2rj6a8v2y5256z";
sha256 = "0y9giw81k4wdmpryr4k42w50z292mf364a6vs1vxf83ksc9ig6j4";
};
propagatedBuildInputs = [ ipaddress ];
@ -20,7 +20,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Reader for the MaxMind DB format";
homepage = "https://www.maxmind.com/en/home";
license = licenses.apsl20;
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}