-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpython.nix
More file actions
64 lines (56 loc) · 1.98 KB
/
python.nix
File metadata and controls
64 lines (56 loc) · 1.98 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
{
pkgs,
lib,
zephyr,
bridle,
python-deps,
pyproject-nix,
}:
let
# Create a python whose `withPackages` knows about some extra stuff we need
python = pkgs.python3.override {
self = python;
packageOverrides = final: prev: {
# Some packages zephyr likes to install using pypi are provided as toplevel packages in
# nixpkgs. Adding them to this package set makes sure they can be pulled into the build/dev
# environment by being referenced in a requirements.txt
inherit (pkgs) gcovr gitlint ruff;
clang-format = pkgs.clang-tools;
imgtool = pkgs.mcuboot-imgtool;
inherit (python-deps) nrf-regtool sphinx-lint;
};
};
# Parse requirements.txt files into pyproject-nix projects
zephyr-project = pyproject-nix.lib.project.loadRequirementsTxt {
requirements = zephyr + "/scripts/requirements.txt";
};
bridle-project = pyproject-nix.lib.project.loadRequirementsTxt {
requirements = bridle + "/zephyr/requirements.txt";
};
# Can't validate the combined packages sets, but we can at least check for
# conflicts within each subset
invalidConstraints =
zephyr-project.validators.validateVersionConstraints { inherit python; }
// bridle-project.validators.validateVersionConstraints { inherit python; };
in
lib.warnIf (invalidConstraints != { })
"pythonEnv: Found invalid Python constraints for: ${builtins.toJSON (lib.attrNames invalidConstraints)}"
(
python.buildEnv.override {
extraLibs =
(bridle-project.renderers.withPackages {
inherit python;
# Nest one project's withPackages within the other to get a combined package
# set. If we want more than two, we should name these lambdas to reduce
# indentation.
extraPackages = (
zephyr-project.renderers.withPackages {
inherit python;
extraPackages = ps: [ ps.west ];
}
);
})
python.pkgs;
ignoreCollisions = true;
}
)