From 6a6ee498e1ac480021ee931c5baa18ef4c40539e Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 17 Oct 2020 08:49:03 -0700 Subject: [PATCH] python2Packages.bugsnag: disable python2 ``` Processing ./bugsnag-4.0.1-py2-none-any.whl ERROR: Package 'bugsnag' requires a different Python: 2.7.18 not in '>=3.5.*, <4' ``` --- pkgs/development/python-modules/bugsnag/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/bugsnag/default.nix b/pkgs/development/python-modules/bugsnag/default.nix index dde9c8c4c1e..a2c41599b36 100644 --- a/pkgs/development/python-modules/bugsnag/default.nix +++ b/pkgs/development/python-modules/bugsnag/default.nix @@ -1,6 +1,7 @@ { stdenv , buildPythonPackage , fetchPypi +, pythonOlder , six , webob }: @@ -8,6 +9,7 @@ buildPythonPackage rec { pname = "bugsnag"; version = "4.0.1"; + disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version;