mirror of
https://github.com/vale981/master-thesis
synced 2025-03-15 15:46:39 -04:00
15 lines
220 B
Nix
15 lines
220 B
Nix
|
let
|
||
|
mach-nix = import (builtins.fetchGit {
|
||
|
url = "https://github.com/DavHau/mach-nix";
|
||
|
ref = "refs/tags/3.3.0";
|
||
|
}) {
|
||
|
};
|
||
|
in
|
||
|
mach-nix.mkPython {
|
||
|
requirements = ''
|
||
|
numpy
|
||
|
jupyter
|
||
|
ptpython
|
||
|
'';
|
||
|
}
|