Add sagemath notebook flake
This commit is contained in:
parent
131796b420
commit
56d4c7c5d6
1 changed files with 36 additions and 0 deletions
36
sagemath-notebook/flake.nix
Normal file
36
sagemath-notebook/flake.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
description = "Sagemath flake";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils}:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
python-packages = ps: with ps; [
|
||||
jupyterlab
|
||||
jupyterlab-git
|
||||
jupyterlab-lsp
|
||||
jupyterlab-widgets
|
||||
];
|
||||
in {
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
sage
|
||||
(python311.withPackages python-packages)
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
# sage --nodotsage -n --notebook-dir .
|
||||
# TODO sage --nodotsage -n=jupyterlab --notebook-dir .
|
||||
# exit
|
||||
'';
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Reference in a new issue