pythonPackages.twisted: disable python2

ruamel* dependencies no longer have correct namespacing for python2
This commit is contained in:
Jonathan Ringer 2019-10-17 08:48:08 -07:00 committed by Frederik Rietdijk
parent 2273963940
commit a1a8c96d8f

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, python
, isPy27
, zope_interface
, incremental
, automat
@ -17,6 +18,7 @@
buildPythonPackage rec {
pname = "Twisted";
version = "19.7.0";
disabled = isPy27; # ruamel namespace now conflicts in python27
src = fetchPypi {
inherit pname version;