depot/third_party/nixpkgs/pkgs/development/python-modules/geopandas/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

69 lines
1.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
fiona,
packaging,
pandas,
pyproj,
rtree,
shapely,
}:
buildPythonPackage rec {
pname = "geopandas";
version = "0.14.4";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
rev = "refs/tags/v${version}";
hash = "sha256-FBhPcae8bnNnsfr14I1p22VhoOf9USF9DAcrAqx+zso=";
};
build-system = [ setuptools ];
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;
};
}