2018-01-20 10:52:21 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, contextlib2, blinker }:
|
2017-10-31 16:28:59 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "raven";
|
2018-01-20 10:59:36 +00:00
|
|
|
version = "6.5.0";
|
2017-10-31 16:28:59 +00:00
|
|
|
|
2018-01-20 10:52:21 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-01-20 10:59:36 +00:00
|
|
|
sha256 = "84da75114739191bdf2388f296ffd6177e83567a7fbaf2701e034ad6026e4f3b";
|
2017-10-31 16:28:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# way too many dependencies to run tests
|
|
|
|
# see https://github.com/getsentry/raven-python/blob/master/setup.py
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-20 10:52:21 +00:00
|
|
|
propagatedBuildInputs = [ blinker ] ++ lib.optionals (!isPy3k) [ contextlib2 ];
|
2017-10-31 16:28:59 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Python client for Sentry (getsentry.com)";
|
|
|
|
homepage = https://github.com/getsentry/raven-python;
|
|
|
|
license = [ lib.licenses.bsd3 ];
|
|
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|