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

View file

@ -17,16 +17,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1676428076,
"narHash": "sha256-8caqXsVSUvZqp4/pOLjbWWabzLEV/ZfDUiEv32WumKw=",
"lastModified": 1718146371,
"narHash": "sha256-W3RNddq9jbuaLDzsXeCLrUXOm5U37ecPcuC4ifjmikM=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e0a054002198445ef987b55c34cde892cecc0de7",
"rev": "2975732531b5fa6e728f837c6f090335cbef5285",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-22.11",
"ref": "release-24.05",
"repo": "nixpkgs",
"type": "github"
}

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
];
};
});