python311Packages.hologram: relax dateutil dep to fix build

This commit is contained in:
annalee 2024-03-22 04:24:14 +00:00
parent 75ec5287b4
commit 0b91085436
No known key found for this signature in database

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"
];