blob: 9cd3685fa0155fed22679273e3ddd76697413e4c (
about) (
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
61
62
|
{
lib,
buildPythonPackage,
fetchPypi,
installShellFiles,
mock,
openstacksdk,
pbr,
python-keystoneclient,
pythonOlder,
stestr,
}:
buildPythonPackage rec {
pname = "python-swiftclient";
version = "4.7.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "python_swiftclient";
inherit version;
hash = "sha256-r9dXV1PY5JYXrcsRVQGH/QsSD82Bnx54LAtTjy0JN3M=";
};
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 = with lib; {
homepage = "https://github.com/openstack/python-swiftclient";
description = "Python bindings to the OpenStack Object Storage API";
mainProgram = "swift";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}
|