spacepaste

  1.  
  2. $ cat shell.nix
  3. with import <nixpkgs> {};
  4. mkShell {
  5. buildInputs =
  6. [(python2.withPackages (ps: with ps; [
  7. numpy
  8. matplotlib
  9. tensorflow
  10. tensorflow-tensorboard
  11. ]))];
  12. }
  13.