From 4a9066586cfe215723ffb8e060d6095870f0e66b Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 Jan 2021 16:38:48 +0000 Subject: [PATCH] tensorflow-probability: mark as broken This was broken by the Tensorflow version bump, and is non-trivial to correct - it now depends on dm-tree, which requires some work to build due to a C++ extension which appears to require Bazel to compile. --- .../python-modules/tensorflow-probability/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/tensorflow-probability/default.nix b/pkgs/development/python-modules/tensorflow-probability/default.nix index a89c6fa307ea..91880562eb3a 100644 --- a/pkgs/development/python-modules/tensorflow-probability/default.nix +++ b/pkgs/development/python-modules/tensorflow-probability/default.nix @@ -122,9 +122,10 @@ in buildPythonPackage { ''; meta = with lib; { + broken = true; # tf-probability 0.8.0 is not compatible with tensorflow 2.3.2 description = "Library for probabilistic reasoning and statistical analysis"; homepage = "https://www.tensorflow.org/probability/"; license = licenses.asl20; - maintainers = with maintainers; [ timokau ]; + maintainers = with maintainers; []; # This package is maintainerless. }; }