python311Packages.icalevents: relax deps

This commit is contained in:
Jamie Magee 2024-01-16 20:53:55 -08:00
parent 148cff9bff
commit 509fa4552c

View File

@ -4,6 +4,7 @@
, pythonOlder
, pytestCheckHook
, poetry-core
, pythonRelaxDepsHook
, datetime
, httplib2
, icalendar
@ -27,6 +28,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -37,6 +39,13 @@ buildPythonPackage rec {
pytz
];
pythonRelaxDeps = [
"datetime"
"httplib2"
"icalendar"
"pytz"
];
nativeCheckInputs = [
pytestCheckHook
];