-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
102 lines (87 loc) · 2.3 KB
/
flake.nix
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
description = "A small set of python scripts to help physic students";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
devenv.url = "github:cachix/devenv";
};
outputs = inputs @ {
self,
nixpkgs,
flake-parts,
devenv,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
debug = true;
systems = ["x86_64-linux" "aarch64-linux"];
perSystem = {
config,
self',
inputs',
pkgs,
system,
lib,
...
}: let
prodPackages = with pkgs; [
(python3.withPackages (ps:
with ps; [
jupyter
numpy
matplotlib
scipy
]))
pandoc
pandoc-include
];
in {
devShells = {
default = devenv.lib.mkShell {
inherit inputs pkgs;
modules = [
{
packages = with pkgs;
[
# Python
black
nodePackages.pyright
# Nix
alejandra
nil
]
++ prodPackages;
scripts = {
start.exec = "jupyter notebook --no-browser";
};
pre-commit.hooks = {
alejandra.enable = true;
black.enable = true;
prettier.enable = true;
};
}
];
};
};
packages = rec {
default = notebooks;
notebooks = pkgs.stdenv.mkDerivation {
name = "notebooks";
version = "0.1.0";
src = ./.;
dontUnpack = true;
buildInputs = prodPackages;
buildPhase = ''
mkdir -p $out/generated/
cd $src
ls -larth . src/ src/generic/
file -i src/generic/main.py
for subfolders in generic regression titration; do
pandoc --filter pandoc-include -i src/main.md src/$subfolders/main.md -o $out\/generated/$subfolders.ipynb
done
'';
};
};
};
};
}