From 4a9066586cfe215723ffb8e060d6095870f0e66b Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 Jan 2021 16:38:48 +0000 Subject: [PATCH 1/3] 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 a89c6fa307e..91880562eb3 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. }; } From 7d9d1c5f15f1e43b5f45c3e778f5b064209d28f1 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 Jan 2021 18:02:51 +0000 Subject: [PATCH 2/3] mxnet: switch to GCC 9 mxnet currently doesn't compile under GCC 10 (linker failures). --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 87a9cd51e7f..61c1647b4ca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -27821,6 +27821,7 @@ in mxnet = callPackage ../applications/science/math/mxnet { inherit (linuxPackages) nvidia_x11; + stdenv = gcc9Stdenv; }; wxmaxima = callPackage ../applications/science/math/wxmaxima { wxGTK = wxGTK30; }; From c0450301b49a9cf3068212d7c758bea8542373b4 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 10 Jan 2021 20:58:24 +0000 Subject: [PATCH 3/3] python3Packages.optuna: mark as broken. This doesn't compile. It's also very out-of-date (over a year old), and has been broken by various library upgrades as well. --- pkgs/development/python-modules/optuna/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/optuna/default.nix b/pkgs/development/python-modules/optuna/default.nix index 64ed54cafbe..aa61b18291d 100644 --- a/pkgs/development/python-modules/optuna/default.nix +++ b/pkgs/development/python-modules/optuna/default.nix @@ -84,6 +84,7 @@ buildPythonPackage rec { ''; meta = with lib; { + broken = true; # Dashboard broken, other build failures. description = "A hyperparameter optimization framework"; homepage = "https://optuna.org/"; license = licenses.mit;