2024-01-18 14:35:59 +01:00
|
|
|
{
|
2024-01-18 14:52:24 +01:00
|
|
|
description = "A Nix-flake-based Jupyter development environment";
|
2024-01-18 14:35:59 +01:00
|
|
|
|
|
|
|
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
|
|
|
|
|
2024-01-23 14:44:07 +01:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, nixpkgs
|
|
|
|
,
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
|
|
forEachSupportedSystem = f:
|
|
|
|
nixpkgs.lib.genAttrs supportedSystems (system:
|
|
|
|
f {
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
|
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
|
|
|
default = pkgs.mkShell {
|
|
|
|
packages = with pkgs;
|
2024-01-24 13:35:02 +01:00
|
|
|
[ python312 jupyter virtualenv ]
|
|
|
|
++ (with pkgs.python312Packages; [ pip jupyter pandas numpy matplotlib ]);
|
2024-01-23 14:44:07 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
2024-01-18 14:35:59 +01:00
|
|
|
}
|