ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bugsnag / default.nix
blob23a31e389acb19d47a90445b18f88bf9f781c3da
1 { lib
2 , blinker
3 , buildPythonPackage
4 , fetchPypi
5 , flask
6 , pythonOlder
7 , webob
8 }:
10 buildPythonPackage rec {
11   pname = "bugsnag";
12   version = "4.3.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.5";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-9q6Cp/reUJJ3XGMT9BV+4z5AxJdP8izfzgjOpS84/Tc=";
20   };
22   propagatedBuildInputs = [
23     webob
24   ];
26   passthru.optional-dependencies = {
27     flask = [
28       blinker
29       flask
30     ];
31   };
33   pythonImportsCheck = [
34     "bugsnag"
35   ];
37   # Module ha no tests
38   doCheck = false;
40   meta = with lib; {
41     description = "Automatic error monitoring for Python applications";
42     homepage = "https://github.com/bugsnag/bugsnag-python";
43     license = licenses.mit;
44     maintainers = with maintainers; [ ];
45   };