python.pkgs.ftfy: disable on python2
This commit is contained in:
parent
c0f88f637f
commit
4313a9b6be
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
, isPy3k
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, html5lib
|
, html5lib
|
||||||
, wcwidth
|
, wcwidth
|
||||||
|
@ -15,6 +16,7 @@ buildPythonPackage rec {
|
||||||
# python 2 and 3, they have pinned ftfy to the v4 branch.
|
# python 2 and 3, they have pinned ftfy to the v4 branch.
|
||||||
# I propose to stick to v4 until another package requires v5.
|
# I propose to stick to v4 until another package requires v5.
|
||||||
# At that point we can make a ftfy_v4 package.
|
# At that point we can make a ftfy_v4 package.
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
|
Loading…
Reference in New Issue