3
0
Fork 0
forked from mirrors/nixpkgs
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.

38 lines
661 B
Nix
Raw Normal View History

{ lib
2020-02-10 09:52:55 +00:00
, buildPythonPackage
, fetchPypi
, pythonOlder
2020-02-10 09:52:55 +00:00
, webob
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.2.1";
format = "setuptools";
disabled = pythonOlder "3.5";
2020-02-10 09:52:55 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-PT6XaKz3QFAEhCmS7jXKK7xxscNlpbhGpCKQIRuSt6U=";
2020-02-10 09:52:55 +00:00
};
propagatedBuildInputs = [
webob
];
pythonImportsCheck = [
"bugsnag"
];
2020-02-10 09:52:55 +00:00
# no tests
doCheck = false;
meta = with lib; {
description = "Automatic error monitoring for Python applications";
homepage = "https://github.com/bugsnag/bugsnag-python";
2020-02-10 09:52:55 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2020-02-10 09:52:55 +00:00
};
}