spacepaste

  1.  
  2. $ cat shell.nix
  3. with import (fetchTarball {
  4. url = https://github.com/nixos/nixpkgs-channels/archive/nixpkgs-unstable.tar.gz;
  5. }) {};
  6. mkShell {
  7. buildInputs =
  8. [(python3.withPackages (ps: with ps; [
  9. numpy
  10. matplotlib
  11. tensorflow
  12. # tensorflow-tensorboard
  13. ]))];
  14. }
  15.