python3Packages.joblib: add setuptools dependency

This commit is contained in:
Jonathan Ringer 2019-09-28 18:47:48 -07:00 committed by Frederik Rietdijk
parent 094f290f35
commit d564733dd9

View File

@ -3,10 +3,11 @@
, fetchPypi , fetchPypi
, fetchpatch , fetchpatch
, stdenv , stdenv
, sphinx
, numpydoc , numpydoc
, pytest , pytest
, python-lz4 , python-lz4
, setuptools
, sphinx
}: }:
@ -37,7 +38,7 @@ buildPythonPackage rec {
]; ];
checkInputs = [ sphinx numpydoc pytest ]; checkInputs = [ sphinx numpydoc pytest ];
propagatedBuildInputs = [ python-lz4 ]; propagatedBuildInputs = [ python-lz4 setuptools ];
# test_disk_used is broken: https://github.com/joblib/joblib/issues/57 # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
# test_dispatch_multiprocessing is broken only on Darwin. # test_dispatch_multiprocessing is broken only on Darwin.