openblas: Upsteam issue breaking scipy not yet pulled (#108709)

This commit is contained in:
Tyson Whitehead
2021-01-28 17:56:38 -05:00
parent 1e51762cb0
commit 0f3acdeeea

View File

@@ -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 # https://github.com/NixOS/nixpkgs/issues/44426
python27 = super.python27.override { packageOverrides = pythonOverrides; }; python27 = super.python27.override { packageOverrides = pythonOverrides; };
python36 = super.python36.override { packageOverrides = pythonOverrides; }; python36 = super.python36.override { packageOverrides = pythonOverrides; };