blob: 5539bac1b4b8d8920fb9f80ca418cd6b308a001f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
aiocontextvars,
blinker,
buildPythonPackage,
fetchPypi,
setuptools,
httpx,
mock,
pytestCheckHook,
requests,
six,
webob,
}:
buildPythonPackage rec {
pname = "rollbar";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-UZQC6sObzE+khIIYcva7GEl/t7bIEWcEeGfRdxTTs3k=";
};
build-system = [ setuptools ];
dependencies = [
requests
six
];
nativeCheckInputs = [
webob
blinker
mock
httpx
aiocontextvars
pytestCheckHook
];
# Still supporting unittest2
# https://github.com/rollbar/pyrollbar/pull/346
# https://github.com/rollbar/pyrollbar/pull/340
doCheck = false;
pythonImportsCheck = [ "rollbar" ];
meta = {
description = "Error tracking and logging from Python to Rollbar";
mainProgram = "rollbar";
homepage = "https://github.com/rollbar/pyrollbar";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|