From 3f30908bc180ecab76d64f71b779c40f8b106949 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Sat, 27 Nov 2021 00:44:58 -0500 Subject: [PATCH] python3Packages.colcon-notification: disable with Python 2 --- pkgs/colcon/notification.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/colcon/notification.nix b/pkgs/colcon/notification.nix index c22ec9f265..41651f2918 100644 --- a/pkgs/colcon/notification.nix +++ b/pkgs/colcon/notification.nix @@ -13,6 +13,8 @@ buildPythonPackage rec { doCheck = false; + disabled = isPy27; + meta = with lib; { description = "An extension for colcon-core to provide status notifications."; homepage = "https://colcon.readthedocs.io";