Fabian Affolter 2024-04-11 15:16:04 +02:00
parent 7db70a7b68
commit e57658dced

View File

@ -18,6 +18,7 @@
, pytest-random-order , pytest-random-order
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
, sanic , sanic
, sanic-testing , sanic-testing
, setuptools , setuptools
@ -31,7 +32,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "elastic-apm"; pname = "elastic-apm";
version = "6.21.3"; version = "6.22.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -40,14 +41,22 @@ buildPythonPackage rec {
owner = "elastic"; owner = "elastic";
repo = "apm-agent-python"; repo = "apm-agent-python";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-Ejix31cMyHOc/IGe4bRp/Nchm9Ps1cRYE8jIaIYlJjs="; hash = "sha256-VuVx+QUiV4M/ebyv2uF/YZwfvcaPDJAEi55fXfoIttU=";
}; };
nativeBuildInputs = [ pythonRelaxDeps = [
"wrapt"
];
build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
aiohttp aiohttp
blinker blinker
certifi certifi