Skip to content

Commit 9fad4df

Browse files
committed
flake: add devShell
1 parent af00d00 commit 9fad4df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

flake.nix

+8
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,13 @@
2222
};
2323

2424
defaultPackage = packages.pstd;
25+
26+
# devShell = (pkgs.mkShell {
27+
# nativeBuildInputs = with packages.python3.pkgs; [ notebook ] ++ pstd.propagatedBuildInputs;
28+
29+
# });
30+
devShell = (packages.python3.withPackages(ps: with ps; [
31+
notebook
32+
] ++ pstd.propagatedBuildInputs)).env;
2533
});
2634
}

0 commit comments

Comments
 (0)