python310Packages.tempest: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-02-20 12:23:14 +01:00 committed by Sandro Jäckel
parent ed3f6b751c
commit 9713bb59c0
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -15,6 +15,7 @@
, oslo-serialization
, oslo-utils
, fixtures
, pythonOlder
, pyyaml
, subunit
, stevedore
@ -30,6 +31,9 @@
buildPythonPackage rec {
pname = "tempest";
version = "33.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;