summary refs log tree commit diff
path: root/pkgs/development/python-modules/bugsnag/default.nix
blob: ace2e2166d7eaeeecf64ae956fe85148abe15e24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, webob
}:

buildPythonPackage rec {
  pname = "bugsnag";
  version = "4.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-NnTn4m9we40Ww2abP7mbz1CtdypZyN2GYBvj8zxhOpI=";
  };

  propagatedBuildInputs = [
    webob
  ];

  pythonImportsCheck = [
    "bugsnag"
  ];

  # no tests
  doCheck = false;

  meta = with lib; {
    description = "Automatic error monitoring for Python applications";
    homepage = "https://github.com/bugsnag/bugsnag-python";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}