Skip to content

Commit

Permalink
python37Packages.maxminddb: 1.4.1 -> 1.5.1 (#70742)
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
r-ryantm authored and c0bw3b committed Oct 18, 2019
1 parent 2d28753 commit 4b0508a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/maxminddb/default.nix
Expand Up @@ -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 ];
Expand All @@ -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; [ ];
};
}

0 comments on commit 4b0508a

Please sign in to comment.