From 0f3acdeeeaedfe05866b286fe809bc37f26c4746 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Thu, 28 Jan 2021 17:56:38 -0500 Subject: [PATCH] openblas: Upsteam issue breaking scipy not yet pulled (#108709) --- temporary/all-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/temporary/all-packages.nix b/temporary/all-packages.nix index f9aeda7..4f1287e 100644 --- a/temporary/all-packages.nix +++ b/temporary/all-packages.nix @@ -17,6 +17,18 @@ self: super: pkgs: with pkgs; { ]; } ); + # https://github.com/NixOS/nixpkgs/issues/92458 and https://github.com/NixOS/nixpkgs/pull/108709 + openblas = super.openblas.overrideAttrs (attrs: rec { + version = "0.3.12"; + src = fetchFromGitHub { + owner = "xianyi"; + repo = "OpenBLAS"; + rev = "v${version}"; + sha256 = "0mk1kjkr96bvvcq2zigzjrs0cnhwsf6gfi0855mp9yifn8lvp20y"; + }; + patches = [ ]; + } ); + # https://github.com/NixOS/nixpkgs/issues/44426 python27 = super.python27.override { packageOverrides = pythonOverrides; }; python36 = super.python36.override { packageOverrides = pythonOverrides; };