33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
78 lines
1.3 KiB
Nix
78 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, betamax
|
|
, hacking
|
|
, iso8601
|
|
, lxml
|
|
, oauthlib
|
|
, os-service-types
|
|
, oslo-config
|
|
, oslo-utils
|
|
, pbr
|
|
, pycodestyle
|
|
, pyyaml
|
|
, requests
|
|
, requests-kerberos
|
|
, requests-mock
|
|
, six
|
|
, stestr
|
|
, stevedore
|
|
, testresources
|
|
, testtools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keystoneauth1";
|
|
version = "5.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-nve0txmnmkoEOHpqpVintspK3xi4Ex8YasrwZD/5e74=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# only a small portion of the listed packages are actually needed for running the tests
|
|
# so instead of removing them one by one remove everything
|
|
rm test-requirements.txt
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
betamax
|
|
iso8601
|
|
lxml
|
|
oauthlib
|
|
os-service-types
|
|
pbr
|
|
requests
|
|
requests-kerberos
|
|
six
|
|
stevedore
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hacking
|
|
oslo-config
|
|
oslo-utils
|
|
pycodestyle
|
|
pyyaml
|
|
requests-mock
|
|
stestr
|
|
testresources
|
|
testtools
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
|
|
pythonImportsCheck = [ "keystoneauth1" ];
|
|
|
|
meta = with lib; {
|
|
description = "Authentication Library for OpenStack Identity";
|
|
homepage = "https://github.com/openstack/keystoneauth";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|