4fb27b6826
Signed-off-by: prescientmoon <git@moonythm.dev>
24 lines
583 B
Nix
24 lines
583 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/release-22.11";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem
|
|
(system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
pyDeps = p: with p; [ numpy scipy matplotlib pillow ];
|
|
in
|
|
rec {
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(python3.withPackages pyDeps)
|
|
jupyter
|
|
pandoc
|
|
];
|
|
};
|
|
});
|
|
}
|