-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
262 lines (239 loc) · 8.87 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
{
description = "Nava PBC Platform CLI";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
poetry2nix = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs =
{
self,
nixpkgs,
flake-utils,
poetry2nix,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
poetry2nix.overlays.default
(final: _: {
inherit nava-platform-cli nava-platform-cli-devEnv;
})
];
};
inherit (poetry2nix.lib.mkPoetry2Nix { inherit pkgs; })
mkPoetryApplication
mkPoetryEnv
defaultPoetryOverrides
;
# Non-Python runtime dependencies go here
runtimePackages = with pkgs; [
gitMinimal
];
# Python packages don't always completely capture their build
# requirements, this is some convenience functionality to make it easier
# to fix that on a case-by-case basis to get unblocked (push fixes
# upstream when you can)
customPoetryOverrides =
final: super:
(builtins.mapAttrs
(
attr: systems:
super.${attr}.overridePythonAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ map (a: final.${a}) systems;
})
)
{
# https://github.com/nix-community/poetry2nix/blob/master/docs/edgecases.md#modulenotfounderror-no-module-named-packagename
# package = [ "setuptools" ];
}
)
// {
# https://github.com/nix-community/poetry2nix/blob/f554d27c1544d9c56e5f1f8e2b8aff399803674e/overrides/default.nix#L3334
ruff =
let
# generated with
# curl https://api.github.com/repos/astral-sh/ruff/releases | \
# jq -r '.[].tag_name' | tr '\n' '\0' | xargs -0 sh -c '
# for version in "$@"; do
# nix_prefetch=$(nix-prefetch-github astral-sh ruff --rev "$version") || exit;
# echo "\"${version#v}\" = \"$(echo "$nix_prefetch" | jq -r ".sha256 // .hash")\";"
# done' _
getRepoHash =
version:
{
"0.8.3" = "sha256-WCLt8t3T3S91Gim+OtvVXbdajsdoXiKBau3pNyBcexY=";
"0.6.1" = "sha256-/tD1TJRq+/2/KMmRHqB8ZbShoDkXG9nnBqacxXYKjbg=";
}
.${version}
or (pkgs.lib.warn "Unknown ruff version: '${version}'. Please update getRepoHash." pkgs.lib.fakeHash);
getCargoHash =
version:
{
"0.8.3" = {
# https://raw.githubusercontent.com/astral-sh/ruff/0.8.3/Cargo.lock
outputHashes = {
"lsp-types-0.95.1" = "sha256-8Oh299exWXVi6A39pALOISNfp8XBya8z+KT/Z7suRxQ=";
"salsa-0.18.0" = "sha256-zUF2ZBorJzgo8O8ZEnFaitAvWXqNwtHSqx4JE8nByIg=";
};
};
"0.6.1" = {
# https://raw.githubusercontent.com/astral-sh/ruff/0.6.1/Cargo.lock
outputHashes = {
"lsp-types-0.95.1" = "sha256-8Oh299exWXVi6A39pALOISNfp8XBya8z+KT/Z7suRxQ=";
"salsa-0.18.0" = "sha256-Gu7YVqEDJUSzBqTeZH1xU0b3CWsWZrEvjIg7QpUaKBw=";
};
};
}
.${version}
or (pkgs.lib.warn "Unknown ruff version: '${version}'. Please update getCargoHash." null);
sha256 = getRepoHash super.ruff.version;
in
super.ruff.overridePythonAttrs (
old:
let
src = pkgs.fetchFromGitHub {
owner = "astral-sh";
repo = "ruff";
rev = old.version;
inherit sha256;
};
cargoDeps =
let
hash = getCargoHash super.ruff.version;
in
if (hash == null || builtins.isAttrs hash) then
pkgs.rustPlatform.importCargoLock (
{
lockFile = "${src.out}/Cargo.lock";
}
// (if hash == null then { } else hash)
)
else
pkgs.rustPlatform.fetchCargoTarball {
name = "ruff-${old.version}-cargo-deps";
inherit src hash;
};
in
pkgs.lib.optionalAttrs (!(old.src.isWheel or false)) {
inherit src cargoDeps;
buildInputs =
old.buildInputs or [ ]
++ pkgs.lib.optionals pkgs.stdenv.isDarwin [
pkgs.darwin.apple_sdk.frameworks.Security
pkgs.darwin.apple_sdk.frameworks.CoreServices
pkgs.libiconv
];
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
pkgs.rustPlatform.cargoSetupHook
pkgs.rustPlatform.maturinBuildHook
];
}
);
};
poetryOverrides = [
defaultPoetryOverrides
customPoetryOverrides
];
# see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples.
nava-platform-cli = mkPoetryApplication {
projectDir = self;
propogatedBuildInputs = runtimePackages;
overrides = poetryOverrides;
};
nava-platform-cli-devEnv = mkPoetryEnv {
projectDir = self;
editablePackageSources = {
"nava-platform-cli" = ./.;
};
overrides = poetryOverrides;
extraPackages =
ps: with ps; [
jedi-language-server
python-lsp-server
pyflakes
];
};
# TODO: could add docker-client here?
generalDevPackages = with pkgs; [
# dev tooling
gnumake
# linting
shellcheck
nixfmt-rfc-style
# python
# pipx # if wanting to test pipx stuff
];
dockerEntryPkg =
let
scriptDeps = [
pkgs.coreutils # for id, stat
pkgs.util-linux # for setpriv
];
in
pkgs.stdenv.mkDerivation {
name = "docker-entry";
src = pkgs.lib.fileset.toSource {
root = ./.;
fileset = ./bin/docker-entry;
};
nativeBuildInputs = [ pkgs.makeWrapper ];
installPhase = ''
mkdir -p $out/bin
install $src/bin/docker-entry $out/bin/docker-entry
wrapProgram $out/bin/docker-entry --prefix PATH : ${pkgs.lib.makeBinPath scriptDeps}
'';
};
dockerBuildArgs = {
name = "nava-platform-cli";
tag = "latest";
contents = [
dockerEntryPkg
pkgs.nava-platform-cli
] ++ runtimePackages;
config = {
Entrypoint = "docker-entry";
WorkingDir = "/project-dir";
};
};
in
{
packages = {
default = pkgs.nava-platform-cli;
docker = pkgs.dockerTools.buildLayeredImage dockerBuildArgs;
dockerStream = pkgs.dockerTools.streamLayeredImage dockerBuildArgs;
};
# nix run .
apps.default = {
type = "app";
program = "${pkgs.nava-platform-cli}/bin/nava-platform";
};
devShells = {
# Shell for general app development.
#
# nix develop
#
# Use unless you are hitting issues, in which case see `devTools` below.
default = pkgs.nava-platform-cli-devEnv.env.overrideAttrs (oldAttrs: {
buildInputs = generalDevPackages ++ runtimePackages ++ [ pkgs.poetry ];
});
# Shell for just dev tools, skipping Python dependencies (which may
# have issues building, etc.).
#
# nix develop .#devTools
#
# Can use this shell for changes to pyproject.toml/poetry.lock or
# running misc make targets/dev scripts unrelated to Python.
devTools = pkgs.mkShell { packages = generalDevPackages ++ runtimePackages ++ [ pkgs.poetry ]; };
};
legacyPackages = pkgs;
}
);
}