python311Packages.python-magnumclient: init at 4.7.0 (#339618)

This commit is contained in:
OTABI Tomoya
2024-09-05 11:49:08 +09:00
committed by GitHub
4 changed files with 102 additions and 0 deletions
@@ -0,0 +1,97 @@
{
lib,
buildPythonPackage,
cryptography,
decorator,
fetchFromGitHub,
fixtures,
keystoneauth1,
openstackdocstheme,
os-client-config,
osc-lib,
oslo-i18n,
oslo-log,
oslo-serialization,
oslo-utils,
oslotest,
osprofiler,
pbr,
prettytable,
python-openstackclient,
pythonOlder,
requests-mock,
requests,
setuptools,
sphinxHook,
stestr,
testtools,
}:
buildPythonPackage rec {
pname = "python-magnumclient";
version = "4.7.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "openstack";
repo = "python-magnumclient";
rev = "refs/tags/${version}";
hash = "sha256-2JHI3CB/DSZZ4LXzL3PCUSmubTciUXtZkc5jpeEc4kk=";
};
env.PBR_VERSION = version;
nativeBuildInputs = [
openstackdocstheme
sphinxHook
];
sphinxBuilders = [ "man" ];
build-system = [
pbr
setuptools
];
dependencies = [
cryptography
decorator
keystoneauth1
os-client-config
osc-lib
oslo-i18n
oslo-log
oslo-serialization
oslo-utils
prettytable
requests
];
nativeCheckInputs = [
fixtures
python-openstackclient
osprofiler
oslotest
requests-mock
stestr
testtools
];
checkPhase = ''
runHook preCheck
stestr run
runHook postCheck
'';
pythonImportsCheck = [ "magnumclient" ];
meta = {
homepage = "https://github.com/openstack/python-magnumclient";
description = "Client library for OpenStack Magnum API";
license = lib.licenses.asl20;
mainProgram = "magnum";
maintainers = lib.teams.openstack.members;
};
}
@@ -12,6 +12,7 @@
python-heatclient,
python-ironicclient,
python-keystoneclient,
python-magnumclient,
python-manilaclient,
python-mistralclient,
python-neutronclient,
@@ -74,6 +75,7 @@ buildPythonPackage rec {
python-designateclient
python-heatclient
python-ironicclient
python-magnumclient
python-manilaclient
python-mistralclient
python-neutronclient
+1
View File
@@ -22943,6 +22943,7 @@ with pkgs;
glanceclient = with python311Packages; toPythonApplication python-glanceclient;
heatclient = with python311Packages; toPythonApplication python-heatclient;
ironicclient = with python311Packages; toPythonApplication python-ironicclient;
magnumclient = with python311Packages; toPythonApplication python-magnumclient;
manilaclient = with python311Packages; toPythonApplication python-manilaclient;
mistralclient = with python311Packages; toPythonApplication python-mistralclient;
swiftclient = with python311Packages; toPythonApplication python-swiftclient;
+2
View File
@@ -12649,6 +12649,8 @@ self: super: with self; {
python-magic = callPackage ../development/python-modules/python-magic { };
python-magnumclient = callPackage ../development/python-modules/python-magnumclient { };
python-manilaclient = callPackage ../development/python-modules/python-manilaclient { };
python-mapnik = callPackage ../development/python-modules/python-mapnik rec {