forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
234 lines (208 loc) · 5.88 KB
/
flake.nix
File metadata and controls
234 lines (208 loc) · 5.88 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
{
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";
};
};
pyproject-build-systems = {
url = "github:pyproject-nix/build-system-pkgs";
inputs = {
pyproject-nix.follows = "pyproject-nix";
uv2nix.follows = "uv2nix";
nixpkgs.follows = "nixpkgs";
};
};
};
outputs =
{
self,
flake-utils,
gitignore,
nixpkgs,
pyproject-nix,
uv2nix,
pyproject-build-systems,
...
}:
{
overlays.default = nixpkgs.lib.composeManyExtensions [
gitignore.overlay
(import ./nix/overlay.nix { inherit uv2nix pyproject-nix pyproject-build-systems; })
];
}
// flake-utils.lib.eachDefaultSystem (
localSystem:
let
pkgs = import nixpkgs {
inherit localSystem;
overlays = [ self.overlays.default ];
};
backendDevDeps = with pkgs; [
# impala UDFs
clang_18
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
libpq.pg_config
postgresql
# sqlite with readline
sqlite-interactive
# mysqlclient build
libmysqlclient
pkg-config
# new hotness for build orchestration (?)
docker-buildx
];
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)
# pure python implementation of psycopg needs to be able to find
# libpq
#
# AFAIK there isn't another way to force the lookup to occur where it
# needs to in the nix store without setting LD_LIBRARY_PATH
export LD_LIBRARY_PATH="$(pg_config --libdir)"
'';
preCommitDeps =
with pkgs;
lib.optionals (!stdenv.isDarwin) [
actionlint
]
++ [
codespell
deadnix
git
just
nixfmt-rfc-style
nodejs.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
# used in notebooks to download data
curl
# docs
quarto
])
++ preCommitDeps
++ backendDevDeps;
inherit shellHook;
PYSPARK_PYTHON = "${env}/bin/python";
AWS_PROFILE = "ibis-testing";
# needed for mssql+pyodbc
ODBCSYSINI = pkgs.writeTextDir "odbcinst.ini" ''
[FreeTDS]
Driver = ${pkgs.lib.makeLibraryPath [ pkgs.freetds ]}/libtdsodbc.so
'';
GDAL_DATA = "${pkgs.gdal}/share/gdal";
PROJ_DATA = "${pkgs.proj}/share/proj";
__darwinAllowLocalNetworking = true;
};
in
rec {
packages = {
default = packages.ibis313;
inherit (pkgs)
ibis310
ibis311
ibis312
ibis313
check-release-notes-spelling
get-latest-quarto-hash
;
};
checks = {
ibis310-pytest = pkgs.ibis310.passthru.tests.pytest;
ibis311-pytest = pkgs.ibis311.passthru.tests.pytest;
ibis312-pytest = pkgs.ibis312.passthru.tests.pytest;
ibis313-pytest = pkgs.ibis313.passthru.tests.pytest;
};
devShells = rec {
ibis310 = mkDevShell pkgs.ibisDevEnv310;
ibis311 = mkDevShell pkgs.ibisDevEnv311;
ibis312 = mkDevShell pkgs.ibisDevEnv312;
ibis313 = mkDevShell pkgs.ibisDevEnv313;
default = ibis313;
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
unzip
gnugrep
(python3.withPackages (p: [ p.packaging ]))
];
};
};
}
);
}