misc: fix python environment options

This commit is contained in:
Gaetan Lepage 2024-01-06 19:17:32 +01:00 committed by Gaétan Lepage
parent a1f8b437b3
commit d52f656a8b
3 changed files with 18 additions and 31 deletions

View file

@ -2,13 +2,10 @@
plain = {};
python-packages = {
python = {
package = pkgs.python3;
extraPythonPackages = p:
with p; [
numpy
];
};
extraPythonPackages = p:
with p; [
numpy
];
};
simple-plugin = {