about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hvac
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-07 22:00:56 +0100
committerGitHub <noreply@github.com>2023-03-07 22:00:56 +0100
commit94ab7a2363f730e8fcd92387154ccebcb21b1410 (patch)
tree4622e82dfa41741950f1d526e692a41997369fda /pkgs/development/python-modules/hvac
parent337384d81cc6e47326062cd619445325c756f69b (diff)
python310Packages.hvac: disable on unsupported Python releases
Diffstat (limited to 'pkgs/development/python-modules/hvac')
-rw-r--r--pkgs/development/python-modules/hvac/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hvac/default.nix b/pkgs/development/python-modules/hvac/default.nix
index 9e513b66a6fb6..a9da2ef29ca38 100644
--- a/pkgs/development/python-modules/hvac/default.nix
+++ b/pkgs/development/python-modules/hvac/default.nix
@@ -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;