5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
91 lines
1.8 KiB
Nix
91 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
ddt,
|
|
openstackdocstheme,
|
|
osc-lib,
|
|
pbr,
|
|
python-barbicanclient,
|
|
python-cinderclient,
|
|
python-designateclient,
|
|
python-heatclient,
|
|
python-ironicclient,
|
|
python-keystoneclient,
|
|
python-manilaclient,
|
|
python-novaclient,
|
|
python-openstackclient,
|
|
requests-mock,
|
|
setuptools,
|
|
sphinxHook,
|
|
sphinxcontrib-apidoc,
|
|
stestr,
|
|
testers,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-openstackclient";
|
|
version = "6.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-u+8e00gpxBBSsuyiZIDinKH3K+BY0UMNpTQexExPKVw=";
|
|
};
|
|
|
|
build-system = [
|
|
openstackdocstheme
|
|
setuptools
|
|
sphinxHook
|
|
sphinxcontrib-apidoc
|
|
];
|
|
|
|
sphinxBuilders = [ "man" ];
|
|
|
|
dependencies = [
|
|
osc-lib
|
|
pbr
|
|
python-cinderclient
|
|
python-keystoneclient
|
|
python-novaclient
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ddt
|
|
requests-mock
|
|
stestr
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
stestr run
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "openstackclient" ];
|
|
|
|
passthru = {
|
|
optional-dependencies = {
|
|
# See https://github.com/openstack/python-openstackclient/blob/master/doc/source/contributor/plugins.rst
|
|
cli-plugins = [
|
|
python-barbicanclient
|
|
python-designateclient
|
|
python-heatclient
|
|
python-ironicclient
|
|
python-manilaclient
|
|
];
|
|
};
|
|
tests.version = testers.testVersion {
|
|
package = python-openstackclient;
|
|
command = "openstack --version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "OpenStack Command-line Client";
|
|
mainProgram = "openstack";
|
|
homepage = "https://github.com/openstack/python-openstackclient";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|