nixpkgs/pkgs/development/python-modules/joblib/default.nix

38 lines
933 B
Nix
Raw Normal View History

2017-09-13 08:34:39 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
2017-09-13 08:34:39 +01:00
, numpydoc
, pytest
, python-lz4
, 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";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:39 +00:00
sha256 = "0630eea4f5664c463f23fbf5dcfc54a2bc6168902719fa8e19daf033022786c8";
2017-09-13 08:34:39 +01:00
};
checkInputs = [ sphinx numpydoc pytest ];
propagatedBuildInputs = [ python-lz4 setuptools ];
2017-09-13 08:34:39 +01:00
# test_disk_used is broken: https://github.com/joblib/joblib/issues/57
# test_dispatch_multiprocessing is broken only on Darwin.
checkPhase = ''
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";
homepage = "https://joblib.readthedocs.io/";
2017-09-13 08:34:39 +01:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ costrouc ];
2017-09-13 08:34:39 +01:00
};
}