From 2efeffb97b8d41457bc19ca74b03c43c816690fe Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sun, 22 Dec 2019 15:32:29 -0800 Subject: [PATCH] pythonPackages.breathe: python2 no longer supported --- pkgs/development/python-modules/breathe/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix index cb049b659430..d2b19ae8650f 100644 --- a/pkgs/development/python-modules/breathe/default.nix +++ b/pkgs/development/python-modules/breathe/default.nix @@ -1,8 +1,9 @@ -{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }: +{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }: buildPythonPackage rec { version = "4.14.0"; pname = "breathe"; + disabled = isPy27; src = fetchPypi { inherit pname version;