about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-01-06 09:41:46 +0100
committerGitHub <noreply@github.com>2022-01-06 09:41:46 +0100
commitec3c2e3776dd7e2904950cb77684fd4279f4ac0e (patch)
tree42ed7d0e8485d08cf84228de6f672fce50d23185
parent3dc83b28a1fced399f51b9f62e2304d5a0f82053 (diff)
python3Packages.python-gitlab: update supported Python releases
-rw-r--r--pkgs/development/python-modules/python-gitlab/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix
index da244944628c6..c3e35db28aa18 100644
--- a/pkgs/development/python-modules/python-gitlab/default.nix
+++ b/pkgs/development/python-modules/python-gitlab/default.nix
@@ -11,7 +11,9 @@
 buildPythonPackage rec {
   pname = "python-gitlab";
   version = "3.0.0";
-  disabled = pythonOlder "3.6";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;