Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 546 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, six 5, webob 6}: 7 8buildPythonPackage rec { 9 pname = "bugsnag"; 10 version = "3.7.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "32966bfe625ec6fc0dbc9d86d79a18f31b22b2fdec3ca070eeb3495304f7e18d"; 15 }; 16 17 propagatedBuildInputs = [ six webob ]; 18 19 # no tests 20 doCheck = false; 21 22 meta = with stdenv.lib; { 23 description = "Automatic error monitoring for django, flask, etc."; 24 homepage = "https://www.bugsnag.com"; 25 license = licenses.mit; 26 platforms = platforms.unix; 27 }; 28}