2017-09-13 08:34:39 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2019-03-24 08:32:50 +00:00
|
|
|
, fetchPypi
|
2019-07-24 18:50:00 +01:00
|
|
|
, stdenv
|
2017-09-13 08:34:39 +01:00
|
|
|
, numpydoc
|
2017-11-02 08:19:58 +00:00
|
|
|
, pytest
|
2018-08-08 20:30:26 +01:00
|
|
|
, python-lz4
|
2019-09-29 02:47:48 +01:00
|
|
|
, setuptools
|
|
|
|
, sphinx
|
2017-09-13 08:34:39 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joblib";
|
2019-12-10 18:07:39 +00:00
|
|
|
version = "0.14.1";
|
2018-08-08 20:30:26 +01:00
|
|
|
|
2019-03-24 08:32:50 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-10 18:07:39 +00:00
|
|
|
sha256 = "0630eea4f5664c463f23fbf5dcfc54a2bc6168902719fa8e19daf033022786c8";
|
2017-09-13 08:34:39 +01:00
|
|
|
};
|
|
|
|
|
2017-11-02 08:19:58 +00:00
|
|
|
checkInputs = [ sphinx numpydoc pytest ];
|
2019-09-29 02:47:48 +01:00
|
|
|
propagatedBuildInputs = [ python-lz4 setuptools ];
|
2017-09-13 08:34:39 +01:00
|
|
|
|
2019-07-24 18:50:00 +01:00
|
|
|
# test_disk_used is broken: https://github.com/joblib/joblib/issues/57
|
|
|
|
# test_dispatch_multiprocessing is broken only on Darwin.
|
2017-11-02 08:19:58 +00:00
|
|
|
checkPhase = ''
|
2019-07-24 18:50:00 +01:00
|
|
|
py.test -k 'not test_disk_used${lib.optionalString (stdenv.isDarwin) " and not test_dispatch_multiprocessing"}' joblib/test
|
2017-09-13 08:34:39 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Lightweight pipelining: using Python functions as pipeline jobs";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://joblib.readthedocs.io/";
|
2017-09-13 08:34:39 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2018-08-08 20:30:26 +01:00
|
|
|
maintainers = with lib.maintainers; [ costrouc ];
|
2017-09-13 08:34:39 +01:00
|
|
|
};
|
2017-11-02 08:19:58 +00:00
|
|
|
}
|