1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/development/python-modules/raven/default.nix

25 lines
718 B
Nix
Raw Normal View History

2018-01-20 10:52:21 +00:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, contextlib2, blinker }:
buildPythonPackage rec {
pname = "raven";
2018-01-20 10:59:36 +00:00
version = "6.5.0";
2018-01-20 10:52:21 +00:00
src = fetchPypi {
inherit pname version;
2018-01-20 10:59:36 +00:00
sha256 = "84da75114739191bdf2388f296ffd6177e83567a7fbaf2701e034ad6026e4f3b";
};
# 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 ];
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 ];
};
}