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
, buildPythonPackage
, fetchPypi
, isPy27
, six
, zope_testing
}:
@ -8,6 +9,7 @@
buildPythonPackage rec {
pname = "manuel";
version = "1.10.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;