python3.pkgs.zconfig: does not support 3.8 and 3.9

This commit is contained in:
Frederik Rietdijk 2020-06-07 15:10:45 +02:00
parent 5249b7029c
commit 02f7e6c767

View File

@ -4,6 +4,7 @@
, zope_testrunner , zope_testrunner
, manuel , manuel
, docutils , docutils
, pythonAtLeast
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,6 +21,8 @@ buildPythonPackage rec {
buildInputs = [ manuel docutils ]; buildInputs = [ manuel docutils ];
propagatedBuildInputs = [ zope_testrunner ]; propagatedBuildInputs = [ zope_testrunner ];
disabled = pythonAtLeast "3.8"; # 3.6.0 introduces compatibility for 3.8 and 3.9
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Structured Configuration Library"; description = "Structured Configuration Library";
homepage = "https://pypi.python.org/pypi/ZConfig"; homepage = "https://pypi.python.org/pypi/ZConfig";