Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

97 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
# Build and Runtime
pbr,
cliff,
debtcollector,
netaddr,
openstacksdk,
osc-lib,
oslo-i18n,
oslo-log,
oslo-serialization,
oslo-utils,
os-client-config,
keystoneauth1,
python-keystoneclient,
requests,
hacking,
# Tests
fixtures,
oslotest,
osprofiler,
python-openstackclient,
subunit,
requests-mock,
stestr,
testtools,
testscenarios,
tempest,
}:
buildPythonPackage rec {
pname = "python-neutronclient";
version = "11.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-h0Ehk2Lkv5wuQ/LmyuTUmR7Y+d+QY/Q0CKC2WLA9YuI=";
};
build-system = [
setuptools
pbr
];
dependencies = [
cliff
debtcollector
netaddr
openstacksdk
osc-lib
oslo-i18n
oslo-log
oslo-serialization
oslo-utils
os-client-config
keystoneauth1
python-keystoneclient
requests
];
nativeCheckInputs = [
hacking
fixtures
oslotest
osprofiler
python-openstackclient
subunit
requests-mock
stestr
testtools
testscenarios
tempest
];
checkPhase = ''
runHook preCheck
stestr run
runHook postCheck
'';
pythonImportsCheck = [ "neutronclient" ];
meta = with lib; {
description = "Python bindings for the OpenStack Networking API";
homepage = "https://github.com/openstack/python-neutronclient/";
license = licenses.asl20;
teams = [ teams.openstack ];
};
}