From 49526ff0eaa80995c07dcad3b4117ab9ec1b9049 Mon Sep 17 00:00:00 2001 From: qbisi Date: Mon, 2 Mar 2026 02:41:57 +0800 Subject: [PATCH] python3Packages.pyadjoint-ad: add missing dependency sympy --- pkgs/development/python-modules/pyadjoint-ad/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyadjoint-ad/default.nix b/pkgs/development/python-modules/pyadjoint-ad/default.nix index c3417350b646..c20a2787f2f8 100644 --- a/pkgs/development/python-modules/pyadjoint-ad/default.nix +++ b/pkgs/development/python-modules/pyadjoint-ad/default.nix @@ -4,6 +4,7 @@ fetchFromGitHub, setuptools, scipy, + sympy, checkpoint-schedules, pytestCheckHook, }: @@ -26,6 +27,7 @@ buildPythonPackage (finalAttrs: { dependencies = [ scipy + sympy checkpoint-schedules ];