Merge pull request #172427 from WolfangAukang/jenkinsapi-fix

python3Packages.jenkinsapi: disable python 3.6 onwards
This commit is contained in:
davidak 2022-05-11 03:17:34 +02:00 committed by GitHub
commit 2200a522e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;