forked from mirrors/nixpkgs
cf3216ab2c
- disable on older Python releases - adjust inputs
75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{ lib
|
|
, babel
|
|
, buildPythonApplication
|
|
, cliff
|
|
, fetchPypi
|
|
, iso8601
|
|
, keystoneauth1
|
|
, osc-lib
|
|
, oslo-i18n
|
|
, oslo-serialization
|
|
, oslo-utils
|
|
, pbr
|
|
, prettytable
|
|
, python-swiftclient
|
|
, pythonOlder
|
|
, pyyaml
|
|
, requests
|
|
, requests-mock
|
|
, stestr
|
|
, testscenarios
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "python-heatclient";
|
|
version = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-5OLysKbM2GbjMT8lshWDLMtqOrHq2DhhWvbw1oNBNZs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
babel
|
|
cliff
|
|
iso8601
|
|
keystoneauth1
|
|
osc-lib
|
|
oslo-i18n
|
|
oslo-serialization
|
|
oslo-utils
|
|
pbr
|
|
prettytable
|
|
python-swiftclient
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
checkInputs = [
|
|
stestr
|
|
testscenarios
|
|
requests-mock
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run -e <(echo "
|
|
heatclient.tests.unit.test_common_http.HttpClientTest.test_get_system_ca_file
|
|
heatclient.tests.unit.test_deployment_utils.TempURLSignalTest.test_create_temp_url
|
|
")
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"heatclient"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for Heat built on the Heat orchestration API";
|
|
homepage = "https://github.com/openstack/python-heatclient";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|