mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-01 06:18:08 +00:00
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
uv-build,
|
|
|
|
affine,
|
|
async-tiff,
|
|
defusedxml,
|
|
numpy,
|
|
pyproj,
|
|
|
|
# tests
|
|
pydantic,
|
|
rasterio,
|
|
morecantile,
|
|
jsonschema,
|
|
pytest-asyncio,
|
|
}:
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "async-geotiff";
|
|
version = "0.5.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "developmentseed";
|
|
repo = "async-geotiff";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-VC4I1ZDKC2Joh2lxscZ1UWp5p5wOEPKjTq+Ty2Z0PJc=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
build-system = [ uv-build ];
|
|
|
|
dependencies = [
|
|
affine
|
|
async-tiff
|
|
defusedxml
|
|
numpy
|
|
pyproj
|
|
];
|
|
|
|
pythonImportsCheck = [ "async_geotiff" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
checkInputs = [
|
|
jsonschema
|
|
morecantile
|
|
rasterio
|
|
pydantic
|
|
pytest-asyncio
|
|
];
|
|
|
|
meta = {
|
|
description = "Fast, async GeoTIFF and COG reader for Python";
|
|
homepage = "https://developmentseed.org/async-geotiff/latest/";
|
|
license = lib.licenses.mit;
|
|
teams = [ lib.teams.geospatial ];
|
|
};
|
|
})
|