2020-02-10 09:52:55 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-10-17 16:49:03 +01:00
|
|
|
, pythonOlder
|
2020-02-10 09:52:55 +00:00
|
|
|
, six
|
|
|
|
, webob
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bugsnag";
|
2020-10-17 02:49:53 +01:00
|
|
|
version = "4.0.1";
|
2020-10-17 16:49:03 +01:00
|
|
|
disabled = pythonOlder "3.5";
|
2020-02-10 09:52:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-17 02:49:53 +01:00
|
|
|
sha256 = "01c2186f6c2a6f801b66d8fc73b8986bd2d4931a6ab40b720e5fd0b66757facc";
|
2020-02-10 09:52:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six webob ];
|
|
|
|
|
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Automatic error monitoring for django, flask, etc.";
|
|
|
|
homepage = "https://www.bugsnag.com";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|