Merge pull request #307743 from imincik/geopandas-0.14.4
python3Packages.geopandas: 0.14.3 -> 0.14.4
This commit is contained in:
commit
a39dd207b4
1 changed files with 11 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue