e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
104 lines
1.8 KiB
Nix
104 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
aiohttp,
|
|
blinker,
|
|
buildPythonPackage,
|
|
certifi,
|
|
ecs-logging,
|
|
fetchFromGitHub,
|
|
httpx,
|
|
jinja2,
|
|
jsonschema,
|
|
logbook,
|
|
mock,
|
|
pytest-asyncio,
|
|
pytest-bdd,
|
|
pytest-localserver,
|
|
pytest-mock,
|
|
pytest-random-order,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
sanic,
|
|
sanic-testing,
|
|
setuptools,
|
|
starlette,
|
|
structlog,
|
|
tornado,
|
|
urllib3,
|
|
webob,
|
|
wrapt,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "elastic-apm";
|
|
version = "6.23.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elastic";
|
|
repo = "apm-agent-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-S1Ebo9AWN+Mf3OFwxNTiR/AZtje3gNiYkZnVqGb7D4c=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "wrapt" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
blinker
|
|
certifi
|
|
sanic
|
|
starlette
|
|
tornado
|
|
urllib3
|
|
wrapt
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ecs-logging
|
|
httpx
|
|
jinja2
|
|
jsonschema
|
|
logbook
|
|
mock
|
|
pytest-asyncio
|
|
pytest-bdd
|
|
pytest-localserver
|
|
pytest-mock
|
|
pytest-random-order
|
|
pytestCheckHook
|
|
sanic-testing
|
|
structlog
|
|
webob
|
|
];
|
|
|
|
disabledTests = [ "elasticapm_client" ];
|
|
|
|
disabledTestPaths =
|
|
[
|
|
# Exclude tornado tests
|
|
"tests/contrib/asyncio/tornado/tornado_tests.py"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# Flaky tests on Darwin
|
|
"tests/utils/threading_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 ];
|
|
mainProgram = "elasticapm-run";
|
|
};
|
|
}
|