-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
32 lines (30 loc) · 722 Bytes
/
flake.nix
File metadata and controls
32 lines (30 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
description = "mkdocs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
};
outputs = { self , nixpkgs ,... }:
let
system = "x86_64-linux";
in {
devShells."${system}".default =
let
pkgs = import nixpkgs {
inherit system;
};
in pkgs.mkShell {
#LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib";
packages = with pkgs; [
python312Packages.python
python312Packages.numpy
python312Packages.matplotlib
python312Packages.pandas
python312Packages.scipy
python312Packages.notebook
python312Packages.jupyter
python312Packages.pytorch
python312Packages.scikit-learn
];
};
};
}