nixpkgs/pkgs/development/python-modules/bugsnag/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
870 B
Nix
Raw Normal View History

{ lib
, blinker
2020-02-10 09:52:55 +00:00
, buildPythonPackage
, fetchPypi
, flask
, pythonOlder
2020-02-10 09:52:55 +00:00
, webob
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.4.0";
format = "setuptools";
disabled = pythonOlder "3.5";
2020-02-10 09:52:55 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-1vtoDmyulfH3YDdMoT9qBFaRd48nnTBCt0iWuQtk3iw=";
2020-02-10 09:52:55 +00:00
};
propagatedBuildInputs = [
webob
];
passthru.optional-dependencies = {
flask = [
blinker
flask
];
};
pythonImportsCheck = [
"bugsnag"
];
2020-02-10 09:52:55 +00:00
# Module ha no tests
2020-02-10 09:52:55 +00:00
doCheck = false;
meta = with lib; {
description = "Automatic error monitoring for Python applications";
homepage = "https://github.com/bugsnag/bugsnag-python";
changelog = "https://github.com/bugsnag/bugsnag-python/blob/v${version}/CHANGELOG.md";
2020-02-10 09:52:55 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2020-02-10 09:52:55 +00:00
};
}