Merge pull request #150451 from fabaff/elastic-apm
python3Packages.elastic-apm: init at 6.7.2
This commit is contained in:
commit
4247c4a76c
3 changed files with 134 additions and 0 deletions
40
pkgs/development/python-modules/ecs-logging/default.nix
Normal file
40
pkgs/development/python-modules/ecs-logging/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, flit-core
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ecs-logging";
|
||||
version = "1.1.0";
|
||||
format = "flit";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "elastic";
|
||||
repo = "ecs-logging-python";
|
||||
rev = version;
|
||||
sha256 = "sha256-UcQh/+K2d4tiMZaz4IAZ2w/B88vEkHoq2LCPMNZ95Mo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
# Circular dependency elastic-apm
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ecs_logging"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Logging formatters for the Elastic Common Schema (ECS) in Python";
|
||||
homepage = "https://github.com/elastic/ecs-logging-python";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
90
pkgs/development/python-modules/elastic-apm/default.nix
Normal file
90
pkgs/development/python-modules/elastic-apm/default.nix
Normal file
|
@ -0,0 +1,90 @@
|
|||
{ 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
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "elastic-apm";
|
||||
version = "6.7.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "elastic";
|
||||
repo = "apm-agent-python";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-NyoFJ3HVxE3AdCCZCZrEk4dDiTIv9cGZYPHVre/PMO4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
blinker
|
||||
certifi
|
||||
sanic
|
||||
starlette
|
||||
tornado
|
||||
urllib3
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
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";
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2438,6 +2438,8 @@ in {
|
|||
|
||||
ecpy = callPackage ../development/python-modules/ecpy { };
|
||||
|
||||
ecs-logging = callPackage ../development/python-modules/ecs-logging { };
|
||||
|
||||
ed25519 = callPackage ../development/python-modules/ed25519 { };
|
||||
|
||||
editables = callPackage ../development/python-modules/editables { };
|
||||
|
@ -2462,6 +2464,8 @@ in {
|
|||
|
||||
elkm1-lib = callPackage ../development/python-modules/elkm1-lib { };
|
||||
|
||||
elastic-apm = callPackage ../development/python-modules/elastic-apm { };
|
||||
|
||||
elasticsearch = callPackage ../development/python-modules/elasticsearch { };
|
||||
|
||||
elasticsearch-dsl = callPackage ../development/python-modules/elasticsearch-dsl { };
|
||||
|
|
Loading…
Reference in a new issue