Merge pull request #64236 from NixOS/staging-next

Staging next
This commit is contained in:
Frederik Rietdijk
2019-07-10 08:52:04 +02:00
committed by GitHub
203 changed files with 5311 additions and 3760 deletions

View File

@@ -21,7 +21,7 @@ in stdenv.mkDerivation {
buildInputs = [ python ];
unpackPhase = "true";
dontUnpack = true;
installPhase = ''
dest="$out/lib/${python.libPrefix}/site-packages/distutils"

View File

@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.0";
name = pname + "-" + version;
unpackPhase = "true";
dontUnpack = true;
buildInputs = [ python ];

View File

@@ -7,14 +7,13 @@
, cython
, joblib
, llvmPackages
, pythonOlder
}:
buildPythonPackage rec {
pname = "scikit-learn";
version = "0.21.2";
# UnboundLocalError: local variable 'message' referenced before assignment
disabled = stdenv.isi686 || (pythonOlder "3.5"); # https://github.com/scikit-learn/scikit-learn/issues/5534
disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534
src = fetchPypi {
inherit pname version;