Merge pull request #307743 from imincik/geopandas-0.14.4

python3Packages.geopandas: 0.14.3 -> 0.14.4
This commit is contained in:
Ivan Mincik 2024-05-01 13:42:12 +00:00 committed by GitHub
commit a39dd207b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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