Compare commits
No commits in common. "2b097045bca06e3b0fc338d5b142ba889dd35898" and "c866015907cac4e0e27462eb64330800227a1de0" have entirely different histories.
2b097045bc
...
c866015907
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
description = "";
|
||||
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let pkgs = nixpkgs.legacyPackages.${system}; in
|
||||
{
|
||||
devShell = import ./shell.nix { inherit pkgs; };
|
||||
}
|
||||
);
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
mkShell {
|
||||
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [ stdenv.cc.cc openssl ];
|
||||
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
with pkgs;
|
||||
|
||||
mkShell {
|
||||
{
|
||||
buildInputs = [
|
||||
python3
|
||||
python3Packages.jupyter
|
||||
|
@ -12,10 +12,4 @@ mkShell {
|
|||
python3Packages.matplotlib
|
||||
python3Packages.seaborn
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
trap "kill 0" EXIT
|
||||
|
||||
jupyter notebook
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue