about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-27 22:58:32 +0700
committerGitHub <noreply@github.com>2021-07-27 22:58:32 +0700
commitec1551facfdd294098165207d43aea9e02362ec3 (patch)
treefcc086b0c93a60fea8d63d9be18051a876154cff
parentb8ca8f837734d1288ffef7ce2a5cb62ea7d6d3c5 (diff)
parent9de6ec98c0b8048f1265a34e0145210d325b6661 (diff)
downloadnixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar.gz
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar.bz2
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar.lz
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar.xz
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.tar.zst
nixlib-ec1551facfdd294098165207d43aea9e02362ec3.zip
Merge pull request #131696 from jonringer/fix-python-lz4
python3Packages.joblib: fix eval
-rw-r--r--pkgs/development/python-modules/joblib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/joblib/default.nix b/pkgs/development/python-modules/joblib/default.nix
index e8d2ced7602b..aad27b5ae636 100644
--- a/pkgs/development/python-modules/joblib/default.nix
+++ b/pkgs/development/python-modules/joblib/default.nix
@@ -5,7 +5,7 @@
 , stdenv
 , numpydoc
 , pytestCheckHook
-, python-lz4
+, lz4
 , setuptools
 , sphinx
 }:
@@ -22,7 +22,7 @@ buildPythonPackage rec {
   };
 
   checkInputs = [ sphinx numpydoc pytestCheckHook ];
-  propagatedBuildInputs = [ python-lz4 setuptools ];
+  propagatedBuildInputs = [ lz4 setuptools ];
 
   pytestFlagsArray = [ "joblib/test" ];
   disabledTests = [