your_spotify: 1.11.0 -> 1.12.0 (#366529)
[NixPkgs.git] / pkgs / development / python-modules / raven / default.nix
blobac4f03faaa78e5e80e89415a0196b94bf57f3391
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   blinker,
6   flask,
7 }:
9 buildPythonPackage rec {
10   pname = "raven";
11   version = "6.10.0";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "getsentry";
16     repo = "raven-python";
17     rev = version;
18     sha256 = "16x9ldl8cy7flw5kh7qmgbmflqyf210j3q6ac2lw61sgwajsnvw8";
19   };
21   # requires outdated dependencies which have no official support for python 3.4
22   doCheck = false;
24   pythonImportsCheck = [ "raven" ];
26   optional-dependencies = {
27     flask = [
28       blinker
29       flask
30     ];
31   };
33   meta = {
34     description = "Legacy Python client for Sentry (getsentry.com) — replaced by sentry-python";
35     mainProgram = "raven";
36     homepage = "https://github.com/getsentry/raven-python";
37     license = [ lib.licenses.bsd3 ];
38     maintainers = with lib.maintainers; [ primeos ];
39   };