depot/third_party/nixpkgs/pkgs/development/python-modules/bugsnag/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

44 lines
867 B
Nix

{
lib,
blinker,
buildPythonPackage,
fetchPypi,
flask,
pythonOlder,
webob,
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.7.1";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-mECP4X1KfzAKVlNUB6ZEi5hE2bUoxEUnkIho/DZG6HM=";
};
propagatedBuildInputs = [ webob ];
passthru.optional-dependencies = {
flask = [
blinker
flask
];
};
pythonImportsCheck = [ "bugsnag" ];
# Module ha no tests
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";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}