python3Packages.bugsnag: add pythonImportsCheck

- update meta
- update inputs
main
Fabian Affolter 2 years ago committed by GitHub
parent c1d67d3552
commit 0d91857fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      pkgs/development/python-modules/bugsnag/default.nix

@ -2,29 +2,36 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, webob
}:
buildPythonPackage rec {
pname = "bugsnag";
version = "4.2.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-NnTn4m9we40Ww2abP7mbz1CtdypZyN2GYBvj8zxhOpI=";
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; [ ];
};
}

Loading…
Cancel
Save