a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
57 lines
967 B
Nix
57 lines
967 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, keystoneauth1
|
|
, openssl
|
|
, oslo-config
|
|
, oslo-serialization
|
|
, pbr
|
|
, pythonOlder
|
|
, requests-mock
|
|
, stestr
|
|
, testresources
|
|
, testscenarios
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-keystoneclient";
|
|
version = "5.0.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-qLv2cfVsJKpaN6IluY8plLggY9c+NIZlfrUAozpAbSk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
keystoneauth1
|
|
oslo-config
|
|
oslo-serialization
|
|
pbr
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
openssl
|
|
requests-mock
|
|
stestr
|
|
testresources
|
|
testscenarios
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"keystoneclient"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Client Library for OpenStack Identity";
|
|
homepage = "https://github.com/openstack/python-keystoneclient";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|