Added sympy. Fixed derivation issue.

This commit is contained in:
2026-07-02 22:42:48 +03:00
parent a82885fe2d
commit 7ff2ef6835
2 changed files with 8 additions and 5 deletions
+6 -1
View File
@@ -58,7 +58,12 @@
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [ (pkgs.texlive.combine texPkgs) pkgs.culmus pkgs.fontconfig ];
buildInputs = [
(pkgs.texlive.combine texPkgs)
pkgs.culmus
pkgs.fontconfig
(pkgs.python3.withPackages (ps: [ ps.sympy ]))
];
shellHook = ''
export FONTCONFIG_FILE="${fontsConf}"
'';