python313Packages.odc-stac: adjust build-system

- add missing dependency
This commit is contained in:
Fabian Affolter
2025-09-02 19:40:09 +02:00
parent 2c4cd11a9e
commit 49900f4180
@@ -4,7 +4,7 @@
fetchFromGitHub,
# build-system
hatchling,
flit-core,
# dependencies
affine,
@@ -16,6 +16,7 @@
pystac,
rasterio,
toolz,
typing-extensions,
xarray,
# optional-dependencies
@@ -40,9 +41,7 @@ buildPythonPackage rec {
hash = "sha256-Ekyavcin13B4DAxv0/XG5QTBuLE7PRospAXe40fHeX0=";
};
build-system = [
hatchling
];
build-system = [ flit-core ];
dependencies = [
affine
@@ -54,6 +53,7 @@ buildPythonPackage rec {
pystac
rasterio
toolz
typing-extensions
xarray
];
@@ -81,9 +81,7 @@ buildPythonPackage rec {
"test_output_geobox"
];
pythonImportsCheck = [
"odc.stac"
];
pythonImportsCheck = [ "odc.stac" ];
meta = {
description = "Load STAC items into xarray Datasets";