depot/third_party/nixpkgs/pkgs/development/python-modules/geopandas/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

68 lines
1.1 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fiona
, packaging
, pandas
, pyproj
, pytestCheckHook
, pythonOlder
, rtree
, shapely
}:
buildPythonPackage rec {
pname = "geopandas";
version = "0.14.1";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
rev = "refs/tags/v${version}";
hash = "sha256-mQ13fjhtFXvUnBok5bDz+zkbgfXEUmwiv77rBpYS5oo=";
};
propagatedBuildInputs = [
fiona
packaging
pandas
pyproj
shapely
];
nativeCheckInputs = [
pytestCheckHook
rtree
];
doCheck = !stdenv.isDarwin;
preCheck = ''
export HOME=$(mktemp -d);
'';
disabledTests = [
# Requires network access
"test_read_file_url"
];
pytestFlagsArray = [
"geopandas"
];
pythonImportsCheck = [
"geopandas"
];
meta = with lib; {
description = "Python geospatial data analysis framework";
homepage = "https://geopandas.org";
changelog = "https://github.com/geopandas/geopandas/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = teams.geospatial.members;
};
}