-
Notifications
You must be signed in to change notification settings - Fork 596
/
flake.nix
183 lines (160 loc) · 4.51 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
description = "Expressive Python analytics at any scale.";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
gitignore = {
url = "github:hercules-ci/gitignore.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
pyproject-nix = {
url = "github:nix-community/pyproject.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
uv2nix = {
url = "github:adisbladis/uv2nix";
inputs = {
pyproject-nix.follows = "pyproject-nix";
nixpkgs.follows = "nixpkgs";
};
};
};
outputs =
{ self
, flake-utils
, gitignore
, nixpkgs
, pyproject-nix
, uv2nix
, ...
}: {
overlays.default = nixpkgs.lib.composeManyExtensions [
gitignore.overlay
(import ./nix/overlay.nix { inherit uv2nix pyproject-nix; })
];
} // flake-utils.lib.eachDefaultSystem (
localSystem:
let
pkgs = import nixpkgs {
inherit localSystem;
overlays = [ self.overlays.default ];
};
backendDevDeps = with pkgs; [
# impala UDFs
clang_15
cmake
ninja
# snowflake
openssl
# backend test suite
docker-compose
# visualization
graphviz-nox
# duckdb
duckdb
# mysql
mariadb-client
# pyodbc setup debugging
# in particular: odbcinst -j
unixODBC
# pyspark
openjdk17_headless
# postgres client
postgresql
# sqlite with readline
sqlite-interactive
# mysqlclient build
libmysqlclient
pkg-config
];
shellHook = ''
rm -f "$PWD/ci/ibis-testing-data"
ln -s "${pkgs.ibisTestingData}" "$PWD/ci/ibis-testing-data"
# Undo dependency propagation by nixpkgs.
unset PYTHONPATH
# Get repository root using git. This is expanded at runtime by the editable `.pth` machinery.
export REPO_ROOT=$(git rev-parse --show-toplevel)
'';
preCommitDeps = with pkgs; [
actionlint
codespell
deadnix
git
just
nixpkgs-fmt
nodejs_20.pkgs.prettier
shellcheck
shfmt
statix
taplo-cli
];
mkDevShell = env: pkgs.mkShell {
inherit (env) name;
packages = [
# python dev environment
env
] ++ (with pkgs; [
# uv executable
uv
# rendering release notes
changelog
glow
# used in the justfile
jq
yj
# commit linting
commitlint
# link checking
lychee
# release automation
nodejs_20
# used in notebooks to download data
curl
# docs
quarto
])
++ preCommitDeps
++ backendDevDeps;
inherit shellHook;
PYSPARK_PYTHON = "${env}/bin/python";
# needed for mssql+pyodbc
ODBCSYSINI = pkgs.writeTextDir "odbcinst.ini" ''
[FreeTDS]
Driver = ${pkgs.lib.makeLibraryPath [ pkgs.freetds ]}/libtdsodbc.so
'';
GDAL_DATA = "${pkgs.gdal}/share/gdal";
__darwinAllowLocalNetworking = true;
};
in
rec {
packages = {
default = packages.ibis312;
inherit (pkgs) ibis310 ibis311 ibis312
update-lock-files check-release-notes-spelling;
};
checks = {
ibis310-pytest = pkgs.ibis310.passthru.tests.pytest;
ibis311-pytest = pkgs.ibis311.passthru.tests.pytest;
ibis312-pytest = pkgs.ibis312.passthru.tests.pytest;
};
devShells = rec {
ibis310 = mkDevShell pkgs.ibisDevEnv310;
ibis311 = mkDevShell pkgs.ibisDevEnv311;
ibis312 = mkDevShell pkgs.ibisDevEnv312;
default = ibis312;
preCommit = pkgs.mkShell {
name = "preCommit";
packages = preCommitDeps ++ [ pkgs.ibisSmallDevEnv ];
};
links = pkgs.mkShell {
name = "links";
packages = with pkgs; [ just lychee ];
};
release = pkgs.mkShell {
name = "release";
packages = with pkgs; [ git uv nodejs_20 unzip gnugrep python3 ];
};
};
}
);
}