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

47 lines
875 B
Nix

{
lib,
blinker,
buildPythonPackage,
fetchPypi,
flask,
pythonOlder,
setuptools,
webob,
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.7.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-mECP4X1KfzAKVlNUB6ZEi5hE2bUoxEUnkIho/DZG6HM=";
};
build-system = [ setuptools ];
dependencies = [ webob ];
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 = [ ];
};
}