summary refs log tree commit diff
path: root/pkgs/development/python-modules/bugsnag/default.nix
blob: fa2880fb0553c653350504b525450d1faec3038e (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.1";
  format = "setuptools";

  disabled = pythonOlder "3.5";

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

  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; [ ];
  };
}