mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
python3,
|
|
jupyter-kernel,
|
|
lib,
|
|
}:
|
|
|
|
let
|
|
mkConsole =
|
|
{
|
|
definitions ? jupyter-kernel.default,
|
|
kernel ? null,
|
|
}:
|
|
(python3.buildEnv.override {
|
|
extraLibs = [ python3.pkgs.jupyter-console ];
|
|
makeWrapperArgs =
|
|
[
|
|
"--set JUPYTER_PATH ${jupyter-kernel.create { inherit definitions; }}"
|
|
]
|
|
++ lib.optionals (kernel != null) [
|
|
"--add-flags --kernel"
|
|
"--add-flags ${kernel}"
|
|
];
|
|
}).overrideAttrs
|
|
(oldAttrs: {
|
|
# To facilitate running nix run .#jupyter-console
|
|
meta = oldAttrs.meta // {
|
|
mainProgram = "jupyter-console";
|
|
};
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
# Build a console derivation with an arbitrary set of definitions, and an optional kernel to use.
|
|
# If the kernel argument is not supplied, Jupyter console will pick a kernel to run from the ones
|
|
# available on the system.
|
|
inherit mkConsole;
|
|
|
|
# An ergonomic way to start a console with a single kernel.
|
|
withSingleKernel =
|
|
definition:
|
|
mkConsole {
|
|
definitions = lib.listToAttrs [ (lib.nameValuePair definition.language definition) ];
|
|
kernel = definition.language;
|
|
};
|
|
}
|