nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5, webob
6}:
7
8buildPythonPackage rec {
9 pname = "bugsnag";
10 version = "4.2.1";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.5";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-PT6XaKz3QFAEhCmS7jXKK7xxscNlpbhGpCKQIRuSt6U=";
18 };
19
20 propagatedBuildInputs = [
21 webob
22 ];
23
24 pythonImportsCheck = [
25 "bugsnag"
26 ];
27
28 # no tests
29 doCheck = false;
30
31 meta = with lib; {
32 description = "Automatic error monitoring for Python applications";
33 homepage = "https://github.com/bugsnag/bugsnag-python";
34 license = licenses.mit;
35 maintainers = with maintainers; [ ];
36 };
37}