blob: b227c7a7b3688c1a738a710c0a1b6c8464dcc2f1 (
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
52
53
54
55
56
57
58
59
60
|
{
lib,
buildPythonPackage,
fetchPypi,
installShellFiles,
mock,
openstacksdk,
pbr,
python-keystoneclient,
pythonOlder,
stestr,
}:
buildPythonPackage rec {
pname = "python-swiftclient";
version = "4.9.0";
pyproject = true;
src = fetchPypi {
pname = "python_swiftclient";
inherit version;
hash = "sha256-niB7guwxeG8Q24/vbiBWgcJJl6C2ANKKGU+dFakO13I=";
};
nativeBuildInputs = [ installShellFiles ];
build-system = [
pbr
];
dependencies = [
python-keystoneclient
];
nativeCheckInputs = [
mock
openstacksdk
stestr
];
postInstall = ''
installShellCompletion --cmd swift \
--bash tools/swift.bash_completion
installManPage doc/manpages/*
'';
checkPhase = ''
stestr run
'';
pythonImportsCheck = [ "swiftclient" ];
meta = {
homepage = "https://github.com/openstack/python-swiftclient";
description = "Python bindings to the OpenStack Object Storage API";
mainProgram = "swift";
license = lib.licenses.asl20;
teams = [ lib.teams.openstack ];
};
}
|