pythonPackages.python-octaviaclient init at 3.7.0

This commit is contained in:
Valentin Chassignol
2024-08-30 19:56:30 +02:00
committed by Vinetos
parent 03b19fdb87
commit 3730b2575b
2 changed files with 91 additions and 0 deletions
@@ -0,0 +1,89 @@
{
lib,
buildPythonPackage,
cliff,
doc8,
docutils,
fetchPypi,
hacking,
keystoneauth1,
openstackclient,
openstackdocstheme,
osc-lib,
oslotest,
oslo-serialization,
oslo-utils,
pbr,
pygments,
python-neutronclient,
requests,
requests-mock,
setuptools,
sphinx,
sphinxcontrib-apidoc,
stestr,
subunit,
testscenarios,
}:
buildPythonPackage rec {
pname = "python-octaviaclient";
version = "3.7.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-wAGxByeRBOwdWZg2DwVpt1yGi5er3KQ/qhyRVAwaKe4=";
};
build-system = [
setuptools
pbr
];
nativeBuildInputs = [
openstackdocstheme
sphinx
sphinxcontrib-apidoc
];
dependencies = [
cliff
keystoneauth1
python-neutronclient
openstackclient
osc-lib
oslo-serialization
oslo-utils
requests
];
nativeCheckInputs = [
hacking
requests-mock
doc8
docutils
pygments
subunit
oslotest
stestr
testscenarios
];
checkPhase = ''
runHook preCheck
stestr run
runHook postCheck
'';
pythonImportsCheck = [ "octaviaclient" ];
meta = with lib; {
description = "OpenStack Octavia Command-line Client";
homepage = "https://opendev.org/openstack/python-octaviaclient/";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}
+2
View File
@@ -10591,6 +10591,8 @@ self: super: with self; {
python-motionmount = callPackage ../development/python-modules/python-motionmount { };
python-octaviaclient = callPackage ../development/python-modules/python-octaviaclient { };
python-otbr-api = callPackage ../development/python-modules/python-otbr-api { };
python-openems = callPackage ../development/python-modules/python-openems { };