From 2d32ac66c14b89e9d1d22b7b629be72c37bda1cf Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 22 Dec 2025 19:25:53 +0100 Subject: [PATCH] python3Packages.pendulum: fix build for structuredAttrs Accidentally nested list breaks the propagatedBuildInputs --- pkgs/development/python-modules/pendulum/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pendulum/default.nix b/pkgs/development/python-modules/pendulum/default.nix index 272d800e46d1..b2839e36177e 100644 --- a/pkgs/development/python-modules/pendulum/default.nix +++ b/pkgs/development/python-modules/pendulum/default.nix @@ -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 ];