depot/third_party/nixpkgs/pkgs/development/python-modules/rollbar/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

57 lines
984 B
Nix

{ lib
, aiocontextvars
, blinker
, buildPythonPackage
, fetchPypi
, fetchpatch
, httpx
, mock
, pytestCheckHook
, requests
, six
, pythonOlder
, webob
}:
buildPythonPackage rec {
pname = "rollbar";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Y0e35J8i8ClvwoemrqddZCz2RJTS7hJwQqelk8l9868=";
};
propagatedBuildInputs = [
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 = with lib; {
description = "Error tracking and logging from Python to Rollbar";
homepage = "https://github.com/rollbar/pyrollbar";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}