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