python3Packages.pendulum: fix build for structuredAttrs

Accidentally nested list breaks the propagatedBuildInputs
This commit is contained in:
Stefan Frijters
2025-12-22 19:25:56 +01:00
parent a2d477d1a4
commit 2d32ac66c1
@@ -56,7 +56,9 @@ buildPythonPackage rec {
python-dateutil
tzdata
]
++ lib.optional (!isPyPy) [ time-machine ]
++ lib.optionals (!isPyPy) [
time-machine
]
++ lib.optionals (pythonOlder "3.9") [
importlib-resources
];