pythonPackages.zipfile36: disable on python 2.x

This commit is contained in:
Frederik Rietdijk 2016-12-25 19:03:03 +01:00
parent 6cf9b1c970
commit c9e642c549

View File

@ -31690,6 +31690,10 @@ EOF
${python.interpreter} -m unittest test_zipfile.py
'';
# Only works with Python 3.x.
# Not supposed to be used with 3.6 and up.
disabled = !(isPy3k && (pythonOlder "3.6"));
meta = {
description = "Read and write ZIP files - backport of the zipfile module from Python 3.6";
homepage = https://gitlab.com/takluyver/zipfile36;