Commit 6f04c3a0 authored by Ivan Mincik's avatar Ivan Mincik
Browse files

python3Packages.pyproj: fix test failure caused by EPSG DB update

parent 216e8141
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  python,
  proj,
  pythonOlder,
@@ -36,6 +37,12 @@ buildPythonPackage rec {
      proj = proj;
      projdev = proj.dev;
    })

    # fix test failure caused by update of EPSG DB
    (fetchpatch {
      url = "https://github.com/pyproj4/pyproj/commit/3f7c7e5bcec33d9b2f37ceb03c484ea318dff3ce.patch";
      hash = "sha256-0J8AlInuhFDAYIBJAJ00XbqIanJY/D8xPVwlOapmLDE=";
    })
  ];

  nativeBuildInputs = [ cython ];