depot/third_party/nixpkgs/pkgs/development/python-modules/python-ironicclient/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

81 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
cliff,
dogpile-cache,
jsonschema,
keystoneauth1,
openstackdocstheme,
openstacksdk,
osc-lib,
oslo-utils,
oslotest,
pbr,
platformdirs,
pyyaml,
requests,
requests-mock,
setuptools,
sphinxcontrib-apidoc,
sphinxHook,
stestr,
stevedore,
}:
buildPythonPackage rec {
pname = "python-ironicclient";
version = "5.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-hv7cI1hIZijKhoJxfrxp7hApcfEX2jUmudPilVLslC4=";
};
build-system = [
openstackdocstheme
setuptools
sphinxcontrib-apidoc
sphinxHook
];
sphinxBuilders = [ "man" ];
dependencies = [
cliff
dogpile-cache
jsonschema
keystoneauth1
openstacksdk
osc-lib
oslo-utils
pbr
platformdirs
pyyaml
requests
stevedore
];
nativeCheckInputs = [
stestr
requests-mock
oslotest
];
checkPhase = ''
runHook preCheck
stestr run
runHook postCheck
'';
pythonImportsCheck = [ "ironicclient" ];
meta = with lib; {
description = "Client for OpenStack bare metal provisioning API, includes a Python module (ironicclient) and CLI (baremetal)";
mainProgram = "baremetal";
homepage = "https://github.com/openstack/python-ironicclient";
license = licenses.asl20;
maintainers = teams.openstack.members;
};
}