python310Packages.hvac: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-03-07 22:00:56 +01:00 committed by GitHub
parent 337384d81c
commit 94ab7a2363
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,11 +4,15 @@
, pyhcl
, requests
, six
, pythonOlder
}:
buildPythonPackage rec {
pname = "hvac";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;