pythonPackages.manuel: disable for python2

zope_testing will no longer correctly collect the tests
This commit is contained in:
Jonathan Ringer 2019-10-17 08:36:13 -07:00 committed by Frederik Rietdijk
parent 4b5e0831e1
commit ad0b21e0b1

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, six , six
, zope_testing , zope_testing
}: }:
@ -8,6 +9,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "manuel"; pname = "manuel";
version = "1.10.1"; version = "1.10.1";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;