pythonPackages.python-octaviaclient init at 3.7.0
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user