Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
863 B
Nix
42 lines
863 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "stac-validator";
|
|
version = "3.10.1";
|
|
pyproject = true;
|
|
disabled = python3Packages.pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stac-utils";
|
|
repo = "stac-validator";
|
|
tag = "v${version}";
|
|
hash = "sha256-tqguaptVRo6k6QALOOOL8dysMGDZx07eRJoHG24JirQ=";
|
|
};
|
|
|
|
build-system = [ python3Packages.setuptools ];
|
|
|
|
pythonRelaxDeps = [
|
|
"click"
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
click
|
|
jsonschema
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
pythonImportsCheck = [ "stac_validator" ];
|
|
|
|
meta = {
|
|
description = "Validator for the SpatioTemporal Asset Catalog (STAC) specification";
|
|
homepage = "https://github.com/stac-utils/stac-validator";
|
|
license = lib.licenses.asl20;
|
|
teams = [ lib.teams.geospatial ];
|
|
};
|
|
}
|