Merge pull request #160856 from r-ryantm/auto-update/python3.10-bugsnag

python310Packages.bugsnag: 4.1.1 -> 4.2.0
This commit is contained in:
Fabian Affolter 2022-02-19 20:59:15 +01:00 committed by GitHub
commit 9662694177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,29 +2,36 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, webob
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.1.1";
version = "4.2.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "cdbdb3e02ef0c0655bb55be8b05ec1cb830b5ec629923ccb24bfd71dede3d1c3";
hash = "sha256-NnTn4m9we40Ww2abP7mbz1CtdypZyN2GYBvj8zxhOpI=";
};
propagatedBuildInputs = [ six webob ];
propagatedBuildInputs = [
webob
];
pythonImportsCheck = [
"bugsnag"
];
# no tests
doCheck = false;
meta = with lib; {
description = "Automatic error monitoring for django, flask, etc.";
homepage = "https://www.bugsnag.com";
description = "Automatic error monitoring for Python applications";
homepage = "https://github.com/bugsnag/bugsnag-python";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
};
}