Created
March 2, 2018 13:38
-
-
Save plumps/c07be06487abd087ca549f9a4aca8472 to your computer and use it in GitHub Desktop.
no signature
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
src = { | |
url = https://github.com/NixOS/nixpkgs/archive/9c90ff7e7df9ceadc7335bb43cc67ba92e171d53.tar.gz; | |
sha256 = "0b2gwbssb530rij8vg6i62rizbxp3i3hi1jif5179rdnjxdl42q2"; | |
}; | |
in with import (fetchTarball src) {}; | |
let | |
python = let | |
packageOverrides = self: super: { | |
tensorflow = super.tensorflow.overridePythonAttrs(old: rec { | |
doCheck = false; | |
}); | |
}; | |
in pkgs.python3.override {inherit packageOverrides;}; | |
in python.withPackages(ps: [ps.tensorflow | |
ps.jupyter | |
ps.jupyterlab | |
ps.scipy | |
ps.scikitimage | |
ps.scikitlearn]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment