python311Packages.python-barbicanclient: init at 7.0.0

https://wiki.openstack.org/wiki/Barbican
https://opendev.org/openstack/python-barbicanclient
This commit is contained in:
Anthony ROUSSEL 2024-07-25 21:31:06 +02:00
parent 866bc4e9a5
commit efc51bf1a1
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
3 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,70 @@
{
lib,
buildPythonPackage,
cliff,
fetchFromGitea,
keystoneauth1,
oslo-i18n,
oslo-serialization,
oslo-utils,
pbr,
pythonOlder,
requests-mock,
requests,
setuptools,
stestr,
}:
buildPythonPackage rec {
pname = "python-barbicanclient";
version = "7.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitea {
domain = "opendev.org";
owner = "openstack";
repo = "python-barbicanclient";
rev = version;
hash = "sha256-odoYyBulOQkjUpymFyZgvI+DYmdHJY3PaG8hh2ms+/0=";
};
env.PBR_VERSION = version;
build-system = [
pbr
setuptools
];
dependencies = [
cliff
keystoneauth1
oslo-i18n
oslo-serialization
oslo-utils
requests
];
doCheck = true;
nativeCheckInputs = [
requests-mock
stestr
];
checkPhase = ''
runHook preCheck
stestr run
runHook postCheck
'';
pythonImportsCheck = [ "barbicanclient" ];
meta = {
homepage = "https://opendev.org/openstack/python-barbicanclient";
description = "Client library for OpenStack Barbican API";
license = lib.licenses.asl20;
maintainers = lib.teams.openstack.members;
};
}

View File

@ -23433,6 +23433,7 @@ with pkgs;
openslp = callPackage ../development/libraries/openslp { };
openstackclient = with python311Packages; toPythonApplication python-openstackclient;
barbicanclient = with python311Packages; toPythonApplication python-barbicanclient;
glanceclient = with python311Packages; toPythonApplication python-glanceclient;
heatclient = with python311Packages; toPythonApplication python-heatclient;
ironicclient = with python311Packages; toPythonApplication python-ironicclient;

View File

@ -12571,6 +12571,8 @@ self: super: with self; {
python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { };
python-barbicanclient = callPackage ../development/python-modules/python-barbicanclient { };
python-barcode = callPackage ../development/python-modules/python-barcode { };
python-baseconv = callPackage ../development/python-modules/python-baseconv { };