mirror of
https://github.com/vale981/master-thesis
synced 2025-03-06 02:21:38 -05:00
14 lines
220 B
Nix
14 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
|
|
'';
|
|
}
|