73 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pystac,
pytest-benchmark,
pytest-console-scripts,
pytest-mock,
pytest-recording,
python-dateutil,
requests,
requests-mock,
setuptools,
}:
buildPythonPackage rec {
pname = "pystac-client";
version = "0.9.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "stac-utils";
repo = "pystac-client";
tag = "v${version}";
hash = "sha256-+DOWf1ZAwylicdSuOBNivi0Z7DxaymZF756X7fogAjc=";
};
build-system = [ setuptools ];
dependencies = [
pystac
python-dateutil
requests
];
nativeCheckInputs = [
pytest-benchmark
pytestCheckHook
pytest-console-scripts
pytest-mock
pytest-recording
requests-mock
];
pytestFlags = [
"--benchmark-disable"
];
disabledTestMarks = [
# Tests accessing Internet
"vcr"
];
# requires cql2
disabledTests = [
"test_filter_conversion_to_cql2_json"
"test_filter_conversion_to_cql2_text"
];
pythonImportsCheck = [ "pystac_client" ];
meta = {
description = "Python client for working with STAC Catalogs and APIs";
homepage = "https://github.com/stac-utils/pystac-client";
license = lib.licenses.asl20;
teams = [ lib.teams.geospatial ];
};
}