From 5aa291539ccd670aca2ef2cebe0c868d5d6ef556 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Tue, 12 May 2026 21:35:42 +0200 Subject: [PATCH] python3Packages.aerosandbox: add missing pythonRemoveDeps --- pkgs/development/python-modules/aerosandbox/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/aerosandbox/default.nix b/pkgs/development/python-modules/aerosandbox/default.nix index b8e0122fe1c4..7353c2e9ab91 100644 --- a/pkgs/development/python-modules/aerosandbox/default.nix +++ b/pkgs/development/python-modules/aerosandbox/default.nix @@ -44,6 +44,14 @@ buildPythonPackage (finalAttrs: { pythonImportsCheck = [ "aerosandbox" ]; + pythonRemoveDeps = [ + # infinite recursion + "neuralfoil" + # not pypa-installed, so no metadata + # good candidate for https://github.com/NixOS/nixpkgs/pull/518530 + "casadi" + ]; + meta = { description = "Aircraft design optimization made fast through modern automatic differentiation"; homepage = "https://peterdsharpe.github.io/AeroSandbox";