Skip to content

Instantly share code, notes, and snippets.

@currymj
Created February 8, 2018 00:02
Show Gist options
  • Save currymj/c61fd5297afd15edd1b539e8f32d2304 to your computer and use it in GitHub Desktop.
Save currymj/c61fd5297afd15edd1b539e8f32d2304 to your computer and use it in GitHub Desktop.
example python nix shell env
with import <nixpkgs> {};
let ps = pkgs.python3Packages;
in
(python3.buildEnv.override {
extraLibs = [
ps.numpy
ps.toolz
ps.notebook
ps.matplotlib
ps.scipy
firefox
neovim
];
ignoreCollisions = true;
}).env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment