File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
pkgs/by-name/st/stac-validator Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments