9 lines
85 B
Nix
9 lines
85 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
python3
|
|
sage
|
|
];
|
|
}
|
|
|