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