about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2024-06-26 18:00:52 +0000
committerGitHub <noreply@github.com>2024-06-26 18:00:52 +0000
commitdb4c8df48c6aad835d4c4971c0b690ca8dc6c6ca (patch)
treeef4fe27ac7339cdd94237ed7d47ec2c77e218d92
parent35a1ac9244c4542c6490450ddb3b7e70c87a7822 (diff)
parent352bd9f79124d89aa24a7e067c1945a493e9e537 (diff)
Merge pull request #321059 from sikmir/pyogrio
python3Packages.pyogrio: 0.8.0 → 0.9.0
-rw-r--r--pkgs/development/python-modules/pyogrio/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/pyogrio/default.nix b/pkgs/development/python-modules/pyogrio/default.nix
index 551fde29bafe8..63f798d21d859 100644
--- a/pkgs/development/python-modules/pyogrio/default.nix
+++ b/pkgs/development/python-modules/pyogrio/default.nix
@@ -17,7 +17,7 @@
 
 buildPythonPackage rec {
   pname = "pyogrio";
-  version = "0.8.0";
+  version = "0.9.0";
   pyproject = true;
   disabled = pythonOlder "3.8";
 
@@ -25,15 +25,12 @@ buildPythonPackage rec {
     owner = "geopandas";
     repo = "pyogrio";
     rev = "v${version}";
-    hash = "sha256-h4Rv5xOWSJSv0nLbosviz5EiF/IsZO5wzBel9YRd0Bg=";
+    hash = "sha256-HC7+dDehDwEIDQnCMYrsC1jE78AyfHqEhfOZLYSzTIw=";
   };
 
   postPatch = ''
     substituteInPlace pyproject.toml \
       --replace-fail "versioneer[toml]==0.28" "versioneer[toml]"
-  '' + lib.optionalString (!pythonOlder "3.12") ''
-    substituteInPlace setup.py \
-      --replace-fail "distutils" "setuptools._distutils"
   '';
 
   nativeBuildInputs = [