Skip to content

Commit 3b5ad76

Browse files
authored
stac-validator: init at 3.4.0 (#349140)
2 parents ac690f3 + dd98f9d commit 3b5ad76

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
python3Packages,
5+
}:
6+
7+
python3Packages.buildPythonPackage rec {
8+
pname = "stac-validator";
9+
version = "3.4.0";
10+
pyproject = true;
11+
disabled = python3Packages.pythonOlder "3.8";
12+
13+
src = fetchFromGitHub {
14+
owner = "stac-utils";
15+
repo = "stac-validator";
16+
rev = "refs/tags/v${version}";
17+
hash = "sha256-e3v8WvVbZcxN91w+YNUmSILZ1nZ9Vy1UbEpCQkTMQpQ=";
18+
};
19+
20+
build-system = [ python3Packages.setuptools ];
21+
22+
dependencies = with python3Packages; [
23+
click
24+
jsonschema
25+
requests
26+
];
27+
28+
pythonImportsCheck = [ "stac_validator" ];
29+
30+
meta = {
31+
description = "Validator for the SpatioTemporal Asset Catalog (STAC) specification";
32+
homepage = "https://github.com/stac-utils/stac-validator";
33+
license = lib.licenses.asl20;
34+
maintainers = lib.teams.geospatial.members;
35+
};
36+
}

0 commit comments

Comments
 (0)