summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bugsnag
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-02-10 17:52:55 +0800
committerPeter Hoeg <peter@hoeg.com>2020-03-04 20:30:55 +0800
commit662700ae91b01f1e678b415fd06e942f07edc850 (patch)
tree498d7cc1f7fdf1ebb675349113f05a40ca671ad1 /pkgs/development/python-modules/bugsnag
parentpythonPackages.Pyro5: init at 5.7 (diff)
downloadnixpkgs-662700ae91b01f1e678b415fd06e942f07edc850.tar.gz
pythonPackages.bugsnag: init at 3.6.0
Diffstat (limited to 'pkgs/development/python-modules/bugsnag')
-rw-r--r--pkgs/development/python-modules/bugsnag/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/bugsnag/default.nix b/pkgs/development/python-modules/bugsnag/default.nix
new file mode 100644
index 000000000000..2f0e67683d9a
--- /dev/null
+++ b/pkgs/development/python-modules/bugsnag/default.nix
@@ -0,0 +1,28 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, six
+, webob
+}:
+
+buildPythonPackage rec {
+ pname = "bugsnag";
+ version = "3.6.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "17cjh7g8gbr0gb22nzybkw7vq9x5wfa5ln94hhzijbz934bw1f37";
+ };
+
+ propagatedBuildInputs = [ six webob ];
+
+ # no tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Automatic error monitoring for django, flask, etc.";
+ homepage = "https://www.bugsnag.com";
+ license = licenses.mit;
+ platforms = platforms.unix;
+ };
+}