Merge pull request #44599 from jyp/tensorflow-1.9
Update to tensorflow 1.9
This commit is contained in:
commit
80bf2e3641
@ -1,5 +1,4 @@
|
|||||||
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k
|
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k
|
||||||
, bleach_1_5_0
|
|
||||||
, numpy
|
, numpy
|
||||||
, werkzeug
|
, werkzeug
|
||||||
, protobuf
|
, protobuf
|
||||||
@ -14,7 +13,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tensorflow-tensorboard";
|
pname = "tensorflow-tensorboard";
|
||||||
version = "1.7.0";
|
version = "1.9.0";
|
||||||
format = "wheel";
|
format = "wheel";
|
||||||
|
|
||||||
src = fetchPypi ({
|
src = fetchPypi ({
|
||||||
@ -23,13 +22,13 @@ buildPythonPackage rec {
|
|||||||
format = "wheel";
|
format = "wheel";
|
||||||
} // (if isPy3k then {
|
} // (if isPy3k then {
|
||||||
python = "py3";
|
python = "py3";
|
||||||
sha256 = "1aa42rl3fkpllqch09d311gk1j281qry6nn07ywgbs6j0kwr6isc";
|
sha256 = "42a04637a636e16054b065907c81396b83a9702948ecd14218f19dc5cf85de98";
|
||||||
} else {
|
} else {
|
||||||
python = "py2";
|
python = "py2";
|
||||||
sha256 = "1vcdkyvw22kpljmj4gxb8m1q54ry02iwvw54w8v8hmdigvc77a7k";
|
sha256 = "97661706fbe857c372405e0f5bd7c3db2197b5e70cec88f6924b726fde65c2c1";
|
||||||
}));
|
}));
|
||||||
|
|
||||||
propagatedBuildInputs = [ bleach_1_5_0 numpy werkzeug protobuf markdown grpcio ] ++ lib.optional (!isPy3k) futures;
|
propagatedBuildInputs = [ numpy werkzeug protobuf markdown grpcio ] ++ lib.optional (!isPy3k) futures;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "TensorFlow's Visualization Toolkit";
|
description = "TensorFlow's Visualization Toolkit";
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
, termcolor
|
, termcolor
|
||||||
, protobuf
|
, protobuf
|
||||||
, absl-py
|
, absl-py
|
||||||
|
, grpcio
|
||||||
, mock
|
, mock
|
||||||
, backports_weakref
|
, backports_weakref
|
||||||
, enum34
|
, enum34
|
||||||
@ -38,38 +39,31 @@ let
|
|||||||
|
|
||||||
in buildPythonPackage rec {
|
in buildPythonPackage rec {
|
||||||
pname = "tensorflow";
|
pname = "tensorflow";
|
||||||
version = "1.7.1";
|
version = "1.9.0";
|
||||||
format = "wheel";
|
format = "wheel";
|
||||||
|
|
||||||
src = let
|
src = let
|
||||||
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) "${python.majorVersion}";
|
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) "${python.majorVersion}";
|
||||||
version = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot;
|
pyver = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot;
|
||||||
platform = if stdenv.isDarwin then "mac" else "linux";
|
platform = if stdenv.isDarwin then "mac" else "linux";
|
||||||
unit = if cudaSupport then "gpu" else "cpu";
|
unit = if cudaSupport then "gpu" else "cpu";
|
||||||
key = "${platform}_py_${version}_${unit}";
|
key = "${platform}_py_${pyver}_${unit}";
|
||||||
dls = import ./tf1.7.1-hashes.nix;
|
dls = import ./tf1.9.0-hashes.nix;
|
||||||
in fetchurl dls.${key};
|
in fetchurl dls.${key};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy six protobuf absl-py astor gast termcolor ]
|
propagatedBuildInputs = [ protobuf numpy termcolor grpcio six astor absl-py gast tensorflow-tensorboard ]
|
||||||
++ lib.optional (!isPy3k) mock
|
++ lib.optional (!isPy3k) mock
|
||||||
++ lib.optionals (pythonOlder "3.4") [ backports_weakref enum34 ]
|
++ lib.optionals (pythonOlder "3.4") [ backports_weakref enum34 ];
|
||||||
++ lib.optional (pythonOlder "3.6") tensorflow-tensorboard;
|
|
||||||
|
|
||||||
# tensorflow depends on tensorflow_tensorboard, which cannot be
|
|
||||||
# built at the moment (some of its dependencies do not build
|
|
||||||
# [htlm5lib9999999 (seven nines) -> tensorboard], and it depends on an old version of
|
|
||||||
# bleach) Hence we disable dependency checking for now.
|
|
||||||
installFlags = lib.optional isPy36 "--no-dependencies";
|
|
||||||
|
|
||||||
|
|
||||||
# Upstream has a pip hack that results in bin/tensorboard being in both tensorflow
|
# Upstream has a pip hack that results in bin/tensorboard being in both tensorflow
|
||||||
# and the propageted input tensorflow-tensorboard which causes environment collisions.
|
# and the propageted input tensorflow-tensorboard which causes environment collisions.
|
||||||
#
|
# another possibility would be to have tensorboard only in the buildInputs
|
||||||
# https://github.com/tensorflow/tensorflow/blob/v1.7.1/tensorflow/tools/pip_package/setup.py#L79
|
# https://github.com/tensorflow/tensorflow/blob/v1.7.1/tensorflow/tools/pip_package/setup.py#L79
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
rm $out/bin/tensorboard
|
rm $out/bin/tensorboard
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
installFlags = "--no-dependencies"; # tensorflow wants setuptools 39, can't allow that.
|
||||||
# Note that we need to run *after* the fixup phase because the
|
# Note that we need to run *after* the fixup phase because the
|
||||||
# libraries are loaded at runtime. If we run in preFixup then
|
# libraries are loaded at runtime. If we run in preFixup then
|
||||||
# patchelf --shrink-rpath will remove the cuda libraries.
|
# patchelf --shrink-rpath will remove the cuda libraries.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
version=1.7.1
|
version=1.9.0
|
||||||
hashfile=tf${version}-hashes.nix
|
hashfile=tf${version}-hashes.nix
|
||||||
rm -f $hashfile
|
rm -f $hashfile
|
||||||
echo "{" >> $hashfile
|
echo "{" >> $hashfile
|
||||||
@ -27,3 +27,4 @@ for sys in "linux" "mac"; do
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
echo "}" >> $hashfile
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
linux_py_27_cpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0-cp27-none-linux_x86_64.whl";
|
||||||
|
sha256 = "1dvmajv5ddgzrazdnxpfhk9dkj0lfiviw4jmvk00d4q5v68z6ihg";
|
||||||
|
};
|
||||||
|
linux_py_35_cpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0-cp35-cp35m-linux_x86_64.whl";
|
||||||
|
sha256 = "07ilrxbhz9p3xwqhl2p8c40y1gsq68x10f34pzayrvcg2i52bvpv";
|
||||||
|
};
|
||||||
|
linux_py_36_cpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0-cp36-cp36m-linux_x86_64.whl";
|
||||||
|
sha256 = "0x2l64ab7i8nr0dzvsryblhn869qyjb85xkhy69nwahqswb68hxl";
|
||||||
|
};
|
||||||
|
linux_py_27_gpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0-cp27-none-linux_x86_64.whl";
|
||||||
|
sha256 = "0q7i82jgy0mzn2mw8i1z0pvv7ssi6m7zqkkjg2i4zxpk8djg8k6z";
|
||||||
|
};
|
||||||
|
linux_py_35_gpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0-cp35-cp35m-linux_x86_64.whl";
|
||||||
|
sha256 = "0nhq2s8fanm095x1sc9h40dvqcv9bc2aj47crv3c2sajbj7dn43g";
|
||||||
|
};
|
||||||
|
linux_py_36_gpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0-cp36-cp36m-linux_x86_64.whl";
|
||||||
|
sha256 = "1m4b9cd8ghghqxaqrlzq7j9499ddidgr78bx0c20pgyrzg38jiz1";
|
||||||
|
};
|
||||||
|
mac_py_2_cpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0-py2-none-any.whl";
|
||||||
|
sha256 = "1djj0xahzrmxhfc6kyjx1lkyfh7jhq3ix0gz9j3iq4smb3ca9z01";
|
||||||
|
};
|
||||||
|
mac_py_3_cpu = {
|
||||||
|
url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0-py3-none-any.whl";
|
||||||
|
sha256 = "0igffy7r0d8mhkn4pybp19jmc25alfpfl4k4fxh2s3rvgii8gk22";
|
||||||
|
};
|
||||||
|
}
|
@ -1204,47 +1204,12 @@ in {
|
|||||||
|
|
||||||
blaze = callPackage ../development/python-modules/blaze { };
|
blaze = callPackage ../development/python-modules/blaze { };
|
||||||
|
|
||||||
# Needed for bleach 1.5.0
|
|
||||||
html5lib_0_9999999 = self.html5lib.overridePythonAttrs rec {
|
|
||||||
name = "html5lib-${version}";
|
|
||||||
disabled = isPy3k && pythonAtLeast "3.6";
|
|
||||||
buildInputs = with self; [ nose flake8 ];
|
|
||||||
propagatedBuildInputs = with self; [ six ];
|
|
||||||
checkPhase = ''
|
|
||||||
nosetests
|
|
||||||
'';
|
|
||||||
|
|
||||||
version = "0.9999999";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/html5lib/html5lib-python/archive/0.9999999.tar.gz";
|
|
||||||
sha256 = "1s6wdbrjzw5jhyfbskf4nj1i5bjpjqq9f89a7r1rl59rhpwmfhhq";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
html5-parser = callPackage ../development/python-modules/html5-parser {};
|
html5-parser = callPackage ../development/python-modules/html5-parser {};
|
||||||
|
|
||||||
httpserver = callPackage ../development/python-modules/httpserver {};
|
httpserver = callPackage ../development/python-modules/httpserver {};
|
||||||
|
|
||||||
bleach = callPackage ../development/python-modules/bleach { };
|
bleach = callPackage ../development/python-modules/bleach { };
|
||||||
|
|
||||||
# needed for tensorflow-tensorboard
|
|
||||||
bleach_1_5_0 = self.bleach.overridePythonAttrs rec {
|
|
||||||
version = "1.5.0";
|
|
||||||
pname = "bleach";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ six html5lib_0_9999999 ];
|
|
||||||
|
|
||||||
preCheck = ''
|
|
||||||
sed -i 's,pytest==[0-9.]*,pytest,' setup.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0rdwb3piwwl30wfqg4ywm07276w7090xfq71lb5d6k5mk62pb3lp";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
blinker = callPackage ../development/python-modules/blinker { };
|
blinker = callPackage ../development/python-modules/blinker { };
|
||||||
|
|
||||||
blockdiag = callPackage ../development/python-modules/blockdiag { };
|
blockdiag = callPackage ../development/python-modules/blockdiag { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user