diff options
author | Ivan Mincik | 2024-05-01 13:42:12 +0000 |
---|---|---|
committer | GitHub | 2024-05-01 13:42:12 +0000 |
commit | a39dd207b406a95aadb1eb5d9a75f124b31c09b7 (patch) | |
tree | 9ccb360fa0ce2cc857765ea47023da697d20de81 | |
parent | 6dc949490c6812a169bf1098e2b72fa8f2c62c52 (diff) | |
parent | dd03cbc938f91f500c14241bb065da31df8858a6 (diff) |
Merge pull request #307743 from imincik/geopandas-0.14.4
python3Packages.geopandas: 0.14.3 -> 0.14.4
-rw-r--r-- | pkgs/development/python-modules/geopandas/default.nix | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix index 522e0f6e59e3..f786d3b25293 100644 --- a/pkgs/development/python-modules/geopandas/default.nix +++ b/pkgs/development/python-modules/geopandas/default.nix @@ -2,20 +2,22 @@ , stdenv , buildPythonPackage , fetchFromGitHub +, pytestCheckHook +, pythonOlder +, setuptools + , fiona , packaging , pandas , pyproj -, pytestCheckHook -, pythonOlder , rtree , shapely }: buildPythonPackage rec { pname = "geopandas"; - version = "0.14.3"; - format = "setuptools"; + version = "0.14.4"; + pyproject = true; disabled = pythonOlder "3.9"; @@ -23,9 +25,13 @@ buildPythonPackage rec { owner = "geopandas"; repo = "geopandas"; rev = "refs/tags/v${version}"; - hash = "sha256-qAINoqnCVfpg2mQhnu0qT/5EjUB+9a3//H8vJJnyj6A="; + hash = "sha256-FBhPcae8bnNnsfr14I1p22VhoOf9USF9DAcrAqx+zso="; }; + build-system = [ + setuptools + ]; + propagatedBuildInputs = [ fiona packaging |