Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2d28753c4c83
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4b0508a58539
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 18, 2019

  1. 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)
    r-ryantm authored and c0bw3b committed Oct 18, 2019
    Copy the full SHA
    4b0508a View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/maxminddb/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/maxminddb/default.nix
Original file line number Diff line number Diff line change
@@ -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; [ ];
};
}