Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8ec36dff85fc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5f42c3a306d4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 16, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    5f42c3a View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/development/python-modules/scikitlearn/default.nix
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/scikitlearn/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, python
, gfortran, glibcLocales
, numpy, scipy, pytest, pillow
, gfortran, glibcLocales, joblib
, numpy, scipy, pytest, pillow, cython
}:

buildPythonPackage rec {
pname = "scikit-learn";
version = "0.20.3";
version = "0.21.2";
# UnboundLocalError: local variable 'message' referenced before assignment
disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534

src = fetchPypi {
inherit pname version;
sha256 = "c503802a81de18b8b4d40d069f5e363795ee44b1605f38bc104160ca3bfe2c41";
sha256 = "0aafc312a55ebf58073151b9308761a5fcfa45b7f7730cea4b1f066f824c72db";
};

buildInputs = [ pillow gfortran glibcLocales ];
propagatedBuildInputs = [ numpy scipy numpy.blas ];
propagatedBuildInputs = [ numpy scipy numpy.blas joblib ];
checkInputs = [ pytest ];
nativeBuildInputs = [ cython ];

LC_ALL="en_US.UTF-8";