0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Merge pull request #244792 from tjni/opentelemetry-api

python310Packages.opentelemetry-api: relax importlib-metadata constraint
This commit is contained in:
Mario Rodas 2023-07-22 06:37:45 -05:00 committed by GitHub
commit ed71ea2d5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,7 @@
, opentelemetry-test-utils
, setuptools
, pytestCheckHook
, pythonRelaxDepsHook
}:
let
@ -28,6 +29,7 @@ let
nativeBuildInputs = [
hatchling
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -36,6 +38,10 @@ let
setuptools
];
pythonRelaxDeps = [
"importlib-metadata"
];
nativeCheckInputs = [
opentelemetry-test-utils
pytestCheckHook