83 lines
1.6 KiB
Nix
83 lines
1.6 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
ddt,
|
||
|
iso8601,
|
||
|
keystoneauth1,
|
||
|
openssl,
|
||
|
openstackdocstheme,
|
||
|
oslo-i18n,
|
||
|
oslo-serialization,
|
||
|
pbr,
|
||
|
prettytable,
|
||
|
pythonOlder,
|
||
|
requests-mock,
|
||
|
setuptools,
|
||
|
sphinxcontrib-apidoc,
|
||
|
sphinxHook,
|
||
|
stestr,
|
||
|
testscenarios,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "python-novaclient";
|
||
|
version = "18.7.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-lMrQ8PTBYc7VKl7NhdE0/Wc7mX2nGUoDHAymk0Q0Cw0=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
openstackdocstheme
|
||
|
sphinxcontrib-apidoc
|
||
|
sphinxHook
|
||
|
];
|
||
|
|
||
|
sphinxBuilders = [ "man" ];
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
dependencies = [
|
||
|
iso8601
|
||
|
keystoneauth1
|
||
|
oslo-i18n
|
||
|
oslo-serialization
|
||
|
pbr
|
||
|
prettytable
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
ddt
|
||
|
openssl
|
||
|
requests-mock
|
||
|
stestr
|
||
|
testscenarios
|
||
|
];
|
||
|
|
||
|
checkPhase = ''
|
||
|
runHook preCheck
|
||
|
stestr run -e <(echo "
|
||
|
novaclient.tests.unit.test_shell.ParserTest.test_ambiguous_option
|
||
|
novaclient.tests.unit.test_shell.ParserTest.test_not_really_ambiguous_option
|
||
|
novaclient.tests.unit.test_shell.ShellTest.test_osprofiler
|
||
|
novaclient.tests.unit.test_shell.ShellTestKeystoneV3.test_osprofiler
|
||
|
")
|
||
|
runHook postCheck
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "novaclient" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Client library for OpenStack Compute API";
|
||
|
mainProgram = "nova";
|
||
|
homepage = "https://github.com/openstack/python-novaclient";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = teams.openstack.members;
|
||
|
};
|
||
|
}
|