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