2021-09-18 10:52:07 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
2022-07-14 12:49:19 +00:00
|
|
|
, installShellFiles
|
2021-09-18 10:52:07 +00:00
|
|
|
, mock
|
|
|
|
, openstacksdk
|
|
|
|
, pbr
|
|
|
|
, python-keystoneclient
|
2022-06-16 17:23:12 +00:00
|
|
|
, pythonOlder
|
2021-09-18 10:52:07 +00:00
|
|
|
, stestr
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "python-swiftclient";
|
2022-07-18 16:21:45 +00:00
|
|
|
version = "4.0.1";
|
2022-06-16 17:23:12 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-07-18 16:21:45 +00:00
|
|
|
hash = "sha256-O2jHNpnF+8OKzXtvEUPWmSOz+vcQ82XZd6QQS9kni/8=";
|
2021-09-18 10:52:07 +00:00
|
|
|
};
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pbr
|
|
|
|
python-keystoneclient
|
|
|
|
];
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
mock
|
|
|
|
openstacksdk
|
|
|
|
stestr
|
|
|
|
];
|
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
postInstall = ''
|
2022-07-14 12:49:19 +00:00
|
|
|
installShellCompletion --cmd swift \
|
|
|
|
--bash tools/swift.bash_completion
|
|
|
|
installManPage doc/manpages/*
|
2021-10-01 09:20:50 +00:00
|
|
|
'';
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
checkPhase = ''
|
|
|
|
stestr run
|
|
|
|
'';
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"swiftclient"
|
|
|
|
];
|
2021-09-22 15:38:15 +00:00
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/openstack/python-swiftclient";
|
|
|
|
description = "Python bindings to the OpenStack Object Storage API";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = teams.openstack.members;
|
|
|
|
};
|
|
|
|
}
|