From 79a23e73c3295ff8ea11d33a2140850ce9036cb7 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Thu, 21 Jul 2022 20:04:11 +0100 Subject: [PATCH] python3Packages.owslib: remove pyproj version constraint --- pkgs/development/python-modules/owslib/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix index a8543b2bad95..10e7580af616 100644 --- a/pkgs/development/python-modules/owslib/default.nix +++ b/pkgs/development/python-modules/owslib/default.nix @@ -8,6 +8,12 @@ buildPythonPackage rec { sha256 = "sha256-jEywYzjrZAXCrs7QttCFaCqmHw8uUo8ceI1o3FDflBs="; }; + # as now upstream https://github.com/geopython/OWSLib/pull/824 + postPatch = '' + substituteInPlace requirements.txt \ + --replace 'pyproj ' 'pyproj #' + ''; + buildInputs = [ pytest ]; propagatedBuildInputs = [ python-dateutil pyproj pytz requests pyyaml ];