1
Fork 0

python(denoising): update flake deps or something, I dunno

This commit is contained in:
prescientmoon 2024-08-31 19:09:23 +02:00
parent 66f78c21ec
commit dd0bd062fd
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
2 changed files with 9 additions and 9 deletions
python/denoising

View file

@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-22.11";
nixpkgs.url = "github:nixos/nixpkgs/release-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
@ -9,14 +9,14 @@
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
pyDeps = p: with p; [ numpy scipy matplotlib pillow ];
pyDeps = p: with p; [ numpy scipy matplotlib pillow jupyter ];
in
rec {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
packages = with pkgs; [
(python3.withPackages pyDeps)
jupyter
pandoc
pkgs.texlive.combined.scheme-full
# pandoc
];
};
});