blob: 14f3670bd521f2a8eb73c4c8159503defefda13a (
plain)
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
|
{
lib,
boto3,
buildPythonPackage,
fetchFromGitHub,
jsonschema,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "oras";
version = "0.2.37";
pyproject = true;
src = fetchFromGitHub {
owner = "oras-project";
repo = "oras-py";
tag = version;
hash = "sha256-pXIA970QBIlbFVFpN1Yl71ojc+atdXQuNoPEW+PrrWc=";
};
build-system = [ setuptools ];
dependencies = [
jsonschema
requests
];
nativeCheckInputs = [
boto3
pytestCheckHook
];
pythonImportsCheck = [ "oras" ];
disabledTests = [
# Test requires network access
"test_get_many_tags"
"test_ssl"
];
meta = {
description = "ORAS Python SDK";
homepage = "https://github.com/oras-project/oras-py";
changelog = "https://github.com/oras-project/oras-py/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|