Unverified Commit 7bb74e4f authored by Ivan Mincik's avatar Ivan Mincik Committed by GitHub
Browse files

python3Packages.geopandas: 1.1.2 -> 1.1.3 (#499860)

parents 03d0d7bf b0627c34
Loading
Loading
Loading
Loading
+9 −11
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  fetchpatch,
  pytestCheckHook,
  setuptools,
  writableTmpDirAsHomeHook,

  packaging,
  pandas,
@@ -25,16 +26,16 @@
  xyzservices,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "geopandas";
  version = "1.1.2";
  version = "1.1.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "geopandas";
    repo = "geopandas";
    tag = "v${version}";
    hash = "sha256-TBb9Bb12OZ9RWiwAGU6JKqiumw1C11USycpKM8mJVdU=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-66FbHNewpSEVZ9RwngK7E4bcELa9Z2OQ9xVP9+fgeHQ=";
  };

  build-system = [ setuptools ];
@@ -70,12 +71,9 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    pytestCheckHook
    rtree
    writableTmpDirAsHomeHook
  ]
  ++ optional-dependencies.all;

  preCheck = ''
    export HOME=$(mktemp -d);
  '';
  ++ finalAttrs.passthru.optional-dependencies.all;

  disabledTests = [
    # Requires network access
@@ -89,8 +87,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python geospatial data analysis framework";
    homepage = "https://geopandas.org";
    changelog = "https://github.com/geopandas/geopandas/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/geopandas/geopandas/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.bsd3;
    teams = [ lib.teams.geospatial ];
  };
}
})