Unverified Commit 352bd9f7 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy
Browse files

python3Packages.pyogrio: 0.8.0 → 0.9.0

parent c58b4a91
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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 = [