8 lines
173 B
Nix
8 lines
173 B
Nix
{ pkgs, ... }: {
|
|
calc = "${pkgs.python313}/bin/python -i ${
|
|
pkgs.writeText "init.py" ''
|
|
from math import *;
|
|
# import numpy as np
|
|
''
|
|
} ";
|
|
}
|