mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
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:
parent
866bc4e9a5
commit
efc51bf1a1
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -23433,6 +23433,7 @@ with pkgs;
|
|||||||
openslp = callPackage ../development/libraries/openslp { };
|
openslp = callPackage ../development/libraries/openslp { };
|
||||||
|
|
||||||
openstackclient = with python311Packages; toPythonApplication python-openstackclient;
|
openstackclient = with python311Packages; toPythonApplication python-openstackclient;
|
||||||
|
barbicanclient = with python311Packages; toPythonApplication python-barbicanclient;
|
||||||
glanceclient = with python311Packages; toPythonApplication python-glanceclient;
|
glanceclient = with python311Packages; toPythonApplication python-glanceclient;
|
||||||
heatclient = with python311Packages; toPythonApplication python-heatclient;
|
heatclient = with python311Packages; toPythonApplication python-heatclient;
|
||||||
ironicclient = with python311Packages; toPythonApplication python-ironicclient;
|
ironicclient = with python311Packages; toPythonApplication python-ironicclient;
|
||||||
|
@ -12571,6 +12571,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { };
|
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-barcode = callPackage ../development/python-modules/python-barcode { };
|
||||||
|
|
||||||
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
|
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
|
||||||
|
Loading…
Reference in New Issue
Block a user