2022-08-26 05:43:18 +02:00
|
|
|
{pkgs, ...}:
|
|
|
|
{
|
2022-08-30 07:10:29 +02:00
|
|
|
static = true;
|
|
|
|
|
2022-08-26 05:43:18 +02:00
|
|
|
packages = with pkgs; [
|
2022-11-29 19:36:07 +01:00
|
|
|
(octave.withPackages (packages: with packages; [
|
2022-05-09 00:45:37 +02:00
|
|
|
symbolic
|
2022-11-29 18:33:48 +01:00
|
|
|
signal
|
2022-05-09 00:45:37 +02:00
|
|
|
]))
|
|
|
|
(python39.withPackages (packages: with packages; [
|
2022-11-29 18:33:48 +01:00
|
|
|
numpy
|
|
|
|
pipenv
|
|
|
|
scipy
|
|
|
|
sympy
|
|
|
|
matplotlib
|
2022-05-09 00:45:37 +02:00
|
|
|
]))
|
2022-04-15 06:45:15 +02:00
|
|
|
];
|
|
|
|
}
|