mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
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' ```
This commit is contained in:
parent
4f98107888
commit
6a6ee498e1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user