-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Description
Currently I have the following flake:
{
inputs = {
mach-nix.url = "mach-nix/3.5.0";
};
outputs = {self, nixpkgs, mach-nix}:
let
l = nixpkgs.lib // builtins;
supportedSystems = [ "x86_64-linux" "aarch64-darwin" ];
forAllSystems = f: l.genAttrs supportedSystems
(system: f system (import nixpkgs {inherit system;}));
in
{
# enter this python environment by executing `nix shell .`
defaultPackage = forAllSystems (system: pkgs: mach-nix.lib."${system}".mkPython {
# python = "python310";
requirements = ''
jupyter_contrib_nbextensions
RISE
'';
});
};
}
I would like to use version python310.
I tried following #504 but that didn't work.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels