33afbf39f6
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.
94 lines
1.5 KiB
Nix
94 lines
1.5 KiB
Nix
{ lib
|
|
, asynctest
|
|
, aiohttp
|
|
, blinker
|
|
, buildPythonPackage
|
|
, certifi
|
|
, ecs-logging
|
|
, fetchFromGitHub
|
|
, httpx
|
|
, jinja2
|
|
, jsonschema
|
|
, Logbook
|
|
, mock
|
|
, pytest-asyncio
|
|
, pytest-bdd
|
|
, pytest-localserver
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, sanic
|
|
, sanic-testing
|
|
, starlette
|
|
, structlog
|
|
, tornado
|
|
, urllib3
|
|
, webob
|
|
, wrapt
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "elastic-apm";
|
|
version = "6.13.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elastic";
|
|
repo = "apm-agent-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HbIra8Cxgn/2xOVEvtcc7rMtSLBmWMxxHlIM44Oy+8U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
blinker
|
|
certifi
|
|
sanic
|
|
starlette
|
|
tornado
|
|
urllib3
|
|
wrapt
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
asynctest
|
|
ecs-logging
|
|
jinja2
|
|
jsonschema
|
|
Logbook
|
|
mock
|
|
httpx
|
|
pytest-asyncio
|
|
pytest-bdd
|
|
pytest-mock
|
|
pytest-localserver
|
|
sanic-testing
|
|
pytestCheckHook
|
|
structlog
|
|
webob
|
|
];
|
|
|
|
disabledTests = [
|
|
"elasticapm_client"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Exclude tornado tests
|
|
"tests/contrib/asyncio/tornado/tornado_tests.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"elasticapm"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python agent for the Elastic APM";
|
|
homepage = "https://github.com/elastic/apm-agent-python";
|
|
changelog = "https://github.com/elastic/apm-agent-python/releases/tag/v${version}";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|