mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
python311Packages.python-keystoneclient: 5.4.0 -> 5.5.0
https://github.com/openstack/python-keystoneclient/compare/5.4.0...5.5.0
This commit is contained in:
parent
4ba44026b4
commit
d95f47992b
@ -9,6 +9,7 @@
|
|||||||
pbr,
|
pbr,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
requests-mock,
|
requests-mock,
|
||||||
|
setuptools,
|
||||||
stestr,
|
stestr,
|
||||||
testresources,
|
testresources,
|
||||||
testscenarios,
|
testscenarios,
|
||||||
@ -16,17 +17,19 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-keystoneclient";
|
pname = "python-keystoneclient";
|
||||||
version = "5.4.0";
|
version = "5.5.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-srS9vp2vews1O4gHZy7u0B+H3QO0+LQtDQYbCbiTH0E=";
|
hash = "sha256-wvWTT5VXaTbJjkW/WZrUi8sKxFFZPl+DROv1LLD0EfU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
keystoneauth1
|
keystoneauth1
|
||||||
oslo-config
|
oslo-config
|
||||||
oslo-serialization
|
oslo-serialization
|
||||||
@ -42,7 +45,9 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
stestr run
|
stestr run
|
||||||
|
runHook postCheck
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pythonImportsCheck = [ "keystoneclient" ];
|
pythonImportsCheck = [ "keystoneclient" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user