lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.tensorflow-tensorboard: 0.1.5 -> 1.5.1

+10 -13
+10 -13
pkgs/development/python-modules/tensorflow-tensorboard/default.nix
··· 1 - { stdenv 2 - , fetchPypi 3 - , buildPythonPackage 4 - , isPy3k 1 + { stdenv, lib, fetchPypi, buildPythonPackage, isPy3k 5 2 , bleach_1_5_0 6 3 , numpy 7 4 , werkzeug 8 5 , protobuf 9 6 , markdown 7 + , futures 10 8 }: 11 9 12 - # tensorflow is built from a downloaded wheel, because the upstream 13 - # project's build system is an arcane beast based on 14 - # bazel. Untangling it and building the wheel from source is an open 15 - # problem. 10 + # tensorflow is built from a downloaded wheel, because 11 + # https://github.com/tensorflow/tensorboard/issues/719 12 + # blocks buildBazelPackage. 16 13 17 14 buildPythonPackage rec { 18 15 pname = "tensorflow-tensorboard"; 19 - version = "0.1.5"; 16 + version = "1.5.1"; 20 17 name = "${pname}-${version}"; 21 18 format = "wheel"; 22 19 ··· 26 23 format = "wheel"; 27 24 } // (if isPy3k then { 28 25 python = "py3"; 29 - sha256 = "0sfia05y1mzgy371faj96vgzhag1rgpa3gnbz9w1fay13jryw26x"; 26 + sha256 = "1cydgvrr0s05xqz1v9z2wdiv60gzbs8wv9wvbflw5700a2llb63l"; 30 27 } else { 31 28 python = "py2"; 32 - sha256 = "0qx4f55zp54x079kxir4zz5b1ckiglsdcb9afz5wcdj6af4a6czg"; 29 + sha256 = "0dhljddlirq6nr84zg4yrk5k69gj3x2abb6wg3crgrparb6qbya7"; 33 30 })); 34 31 35 - propagatedBuildInputs = [ bleach_1_5_0 numpy werkzeug protobuf markdown ]; 32 + propagatedBuildInputs = [ bleach_1_5_0 numpy werkzeug protobuf markdown ] ++ lib.optional (!isPy3k) futures; 36 33 37 34 meta = with stdenv.lib; { 38 - description = "TensorFlow helps the tensors flow"; 35 + description = "TensorFlow's Visualization Toolkit"; 39 36 homepage = http://tensorflow.org; 40 37 license = licenses.asl20; 41 38 maintainers = with maintainers; [ abbradar ];