mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 09:24:20 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
91 lines
2.1 KiB
Nix
91 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
ddt,
|
|
keystoneauth1,
|
|
openstackdocstheme,
|
|
oslo-i18n,
|
|
oslo-serialization,
|
|
oslo-utils,
|
|
pbr,
|
|
requests,
|
|
prettytable,
|
|
reno,
|
|
requests-mock,
|
|
setuptools,
|
|
simplejson,
|
|
sphinxHook,
|
|
stestr,
|
|
stevedore,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-cinderclient";
|
|
version = "9.8.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "python_cinderclient";
|
|
inherit version;
|
|
hash = "sha256-vT7p+Uh8XnmVfwGKaz8t7OcFna2PYVXYPdS265RHoR0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
openstackdocstheme
|
|
reno
|
|
sphinxHook
|
|
];
|
|
|
|
sphinxBuilders = [ "man" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
simplejson
|
|
keystoneauth1
|
|
oslo-i18n
|
|
oslo-utils
|
|
pbr
|
|
prettytable
|
|
requests
|
|
stevedore
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ddt
|
|
oslo-serialization
|
|
requests-mock
|
|
stestr
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
# File "/build/python-cinderclient-9.6.0/cinderclient/client.py", line 196, in request
|
|
# if raise_exc and resp.status_code >= 400:
|
|
# ^^^^^^^^^^^^^^^^^^^^^^^
|
|
#
|
|
# TypeError: '>=' not supported between instances of 'Mock' and 'int'
|
|
stestr run -e <(echo "
|
|
cinderclient.tests.unit.test_client.ClientTest.test_keystone_request_raises_auth_failure_exception
|
|
cinderclient.tests.unit.test_client.ClientTest.test_sessionclient_request_method
|
|
cinderclient.tests.unit.test_client.ClientTest.test_sessionclient_request_method_raises_badrequest
|
|
cinderclient.tests.unit.test_client.ClientTest.test_sessionclient_request_method_raises_overlimit
|
|
cinderclient.tests.unit.test_shell.ShellTest.test_password_prompted
|
|
cinderclient.tests.unit.test_shell.TestLoadVersionedActions.test_load_versioned_actions_with_help
|
|
")
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "cinderclient" ];
|
|
|
|
meta = {
|
|
description = "OpenStack Block Storage API Client Library";
|
|
mainProgram = "cinder";
|
|
homepage = "https://github.com/openstack/python-cinderclient";
|
|
license = lib.licenses.asl20;
|
|
teams = [ lib.teams.openstack ];
|
|
};
|
|
}
|