Merge pull request #281463 from JamieMagee/icalevents-relax-deps

python311Packages.icalevents: relax deps
This commit is contained in:
Robert Schütz
2024-01-17 07:30:13 +01:00
committed by GitHub
@@ -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
];