2017-09-13 08:34:39 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2019-03-24 08:32:50 +00:00
|
|
|
, fetchPypi
|
|
|
|
, fetchpatch
|
2019-07-24 18:50:00 +01:00
|
|
|
, stdenv
|
2017-09-13 08:34:39 +01:00
|
|
|
, sphinx
|
|
|
|
, numpydoc
|
2017-11-02 08:19:58 +00:00
|
|
|
, pytest
|
2018-08-08 20:30:26 +01:00
|
|
|
, python-lz4
|
2017-09-13 08:34:39 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joblib";
|
2019-03-24 08:32:50 +00:00
|
|
|
version = "0.13.2";
|
2018-08-08 20:30:26 +01:00
|
|
|
|
2019-03-24 08:32:50 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "315d6b19643ec4afd4c41c671f9f2d65ea9d787da093487a81ead7b0bac94524";
|
2017-09-13 08:34:39 +01:00
|
|
|
};
|
|
|
|
|
2019-03-24 08:32:50 +00:00
|
|
|
# python-lz4 compatibility
|
|
|
|
# https://github.com/joblib/joblib/pull/847
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/joblib/joblib/commit/d3235fd601f40c91e074d48a411d7380329fe155.patch;
|
|
|
|
sha256 = "1hg1vfbba7mfilrpvmd97s68v03vs4bhlp1c1dj9lizi51mj2q2h";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/joblib/joblib/commit/884c92cd2aa5c2c1975ab48786da75556d779833.patch;
|
|
|
|
sha256 = "11kvpkvi428dq13ayy7vfyrib8isvcrdw8cd5hxkp5axr7sl12ba";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/joblib/joblib/commit/f1e177d781cc0d64420ec964a0b17d8268cb42a0.patch;
|
|
|
|
sha256 = "1sq6wcw4bhaq8cqwcd43fdws3467qy342xx3pgv62hp2nn75a21d";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-11-02 08:19:58 +00:00
|
|
|
checkInputs = [ sphinx numpydoc pytest ];
|
2018-08-08 20:30:26 +01:00
|
|
|
propagatedBuildInputs = [ python-lz4 ];
|
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";
|
2018-06-27 21:12:57 +01:00
|
|
|
homepage = https://pythonhosted.org/joblib/;
|
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
|
|
|
}
|