Merge pull request #297940 from a-n-n-a-l-e-e/hologram-relax-deps

python311Packages.hologram: relax dateutil dep to fix build
This commit is contained in:
Peder Bergebakken Sundt 2024-03-22 20:17:54 +01:00 committed by GitHub
commit 62ddb29bdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,7 @@
, jsonschema
, pytestCheckHook
, python-dateutil
, pythonRelaxDepsHook
, setuptools
, wheel
}:
@ -31,6 +32,7 @@ buildPythonPackage rec {
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
wheel
];
@ -44,6 +46,10 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonRelaxDeps = [
"python-dateutil"
];
pythonImportsCheck = [
"hologram"
];