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