From 83433b8ea7f1836ac5ebea5b22ad0963344ea1d0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 12 Dec 2021 17:53:56 +0100 Subject: [PATCH] python3Packages.elastic-apm: init at 6.7.2 --- .../python-modules/elastic-apm/default.nix | 90 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 92 insertions(+) create mode 100644 pkgs/development/python-modules/elastic-apm/default.nix diff --git a/pkgs/development/python-modules/elastic-apm/default.nix b/pkgs/development/python-modules/elastic-apm/default.nix new file mode 100644 index 000000000000..bf78fec5e5d3 --- /dev/null +++ b/pkgs/development/python-modules/elastic-apm/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8046fac9f1e0..9ce43f674054 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2456,6 +2456,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 { };