mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
|
|
certifi,
|
|
cython,
|
|
gdal,
|
|
numpy,
|
|
packaging,
|
|
setuptools,
|
|
versioneer,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyogrio";
|
|
version = "0.10.0";
|
|
pyproject = true;
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geopandas";
|
|
repo = "pyogrio";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-AyKBktZWzUxD1HKKp89gQ97c4WPB5PkXnkFqN+RHx7c=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "versioneer[toml]==0.28" "versioneer[toml]"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
gdal # for gdal-config
|
|
setuptools
|
|
versioneer
|
|
wheel
|
|
] ++ versioneer.optional-dependencies.toml;
|
|
|
|
buildInputs = [ gdal ];
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
numpy
|
|
packaging
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
python setup.py build_ext --inplace
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
# disable tests which require network access
|
|
"-m 'not network'"
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyogrio" ];
|
|
|
|
meta = {
|
|
description = "Vectorized spatial vector file format I/O using GDAL/OGR";
|
|
homepage = "https://pyogrio.readthedocs.io/";
|
|
changelog = "https://github.com/geopandas/pyogrio/blob/${src.rev}/CHANGES.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = lib.teams.geospatial.members;
|
|
};
|
|
}
|