mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-18 14:00:23 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
58 lines
987 B
Nix
58 lines
987 B
Nix
{ lib
|
|
, aiocontextvars
|
|
, blinker
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, fetchpatch
|
|
, httpx
|
|
, mock
|
|
, pytestCheckHook
|
|
, requests
|
|
, six
|
|
, pythonOlder
|
|
, webob
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rollbar";
|
|
version = "0.16.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-AjE9/GBxDsc2qwM9D4yWnYV6i5kc1n4MGpFiDooE7eI=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|