1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
click,
packaging,
pydantic,
pystac,
pystac-client,
python-dotenv,
pytz,
requests,
# optional-dependencies
adlfs,
azure-storage-blob,
# test
responses,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "planetary-computer";
version = "1.0.0.post0";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "planetary-computer-sdk-for-python";
tag = "v${version}";
hash = "sha256-NPHUxThSZzENw4W91WAOqChyIl6Z/Afi4mddz+lXlXA=";
};
build-system = [
setuptools
];
dependencies = [
click
packaging
pydantic
pystac
pystac-client
python-dotenv
pytz
requests
];
optional-dependencies = {
adlfs = [ adlfs ];
azure = [ azure-storage-blob ];
all = lib.concatAttrValues (lib.removeAttrs optional-dependencies [ "all" ]);
};
pythonImportsCheck = [
"planetary_computer"
];
nativeCheckInputs = [
responses
pytestCheckHook
]
++ optional-dependencies.all;
disabledTests = [
# tests require network access
"test_get_adlfs_filesystem"
"test_get_container_client"
"test_signing"
];
meta = {
description = "Planetary Computer SDK for Python";
homepage = "https://github.com/microsoft/planetary-computer-sdk-for-python";
changelog = "https://github.com/microsoft/planetary-computer-sdk-for-python/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ daspk04 ];
mainProgram = "planetarycomputer";
};
}
|