-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
64 lines (60 loc) · 1.63 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
{
description = "fast Haar wavelet transform";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let
inherit (nixpkgs) lib;
systems = lib.systems.flakeExposed;
eachDefaultSystem = f: builtins.foldl' lib.attrsets.recursiveUpdate { }
(map f systems);
in
eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
python' = pkgs.python3.withPackages (ps: with ps; [
cython
jax
jaxlib
pygments
pywavelets
seaborn
setuptools
]);
formatters = [ pkgs.black pkgs.isort pkgs.nixpkgs-fmt ];
linters = [ pkgs.pyright pkgs.ruff pkgs.statix ];
in
{
formatter.${system} = pkgs.writeShellApplication {
name = "formatter";
runtimeInputs = formatters;
text = ''
isort "$@"
black "$@"
nixpkgs-fmt "$@"
'';
};
checks.${system}.lint = pkgs.stdenvNoCC.mkDerivation {
name = "lint";
src = ./.;
doCheck = true;
nativeCheckInputs = formatters ++ linters ++ lib.singleton python';
checkPhase = ''
isort --check --diff .
black --check --diff .
nixpkgs-fmt --check .
ruff check .
pyright .
statix check
'';
installPhase = "touch $out";
};
devShells.${system}.default = pkgs.mkShell {
packages = [
python'
]
++ formatters
++ linters;
};
}
);
}