summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-12-17 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-12-17 04:20:00 +0000
commit819bfa36c7020ebf92702e7991856942ab496482 (patch)
treea6e540b7a7f047e9f569aa778044616518caf900
parentfd56a1532adbd47c375994b83433392d197a070d (diff)
pythonPackages.ansi2html: disable on python 2
-rw-r--r--pkgs/development/python-modules/ansi2html/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/ansi2html/default.nix b/pkgs/development/python-modules/ansi2html/default.nix
index 76775acb1632..df115cf7c470 100644
--- a/pkgs/development/python-modules/ansi2html/default.nix
+++ b/pkgs/development/python-modules/ansi2html/default.nix
@@ -4,6 +4,8 @@ buildPythonPackage rec {
pname = "ansi2html";
version = "1.6.0";
+ disabled = !isPy3k;
+
src = fetchPypi {
inherit pname version;
sha256 = "0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596";
@@ -22,6 +24,5 @@ buildPythonPackage rec {
homepage = "https://github.com/ralphbean/ansi2html";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ davidtwco ];
- platforms = platforms.all;
};
}