python3Packages.jenkinsapi: disable python 3.6 onwards

This commit is contained in:
P. R. d. O 2022-05-10 18:49:14 -06:00
parent 83b213efd1
commit 749d9e0862
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7

View File

@ -1,5 +1,6 @@
{ lib, stdenv
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, mock
, pytest
@ -13,6 +14,9 @@
buildPythonPackage rec {
pname = "jenkinsapi";
version = "0.3.11";
format = "setuptools";
disabled = pythonAtLeast "3.6";
src = fetchPypi {
inherit pname version;