mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib
|
|
, pythonOlder
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, stdenv
|
|
, numpydoc
|
|
, pytestCheckHook
|
|
, python-lz4
|
|
, setuptools
|
|
, sphinx
|
|
}:
|
|
|
|
|
|
buildPythonPackage rec {
|
|
pname = "joblib";
|
|
version = "0.17.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9e284edd6be6b71883a63c9b7f124738a3c16195513ad940eae7e3438de885d5";
|
|
};
|
|
|
|
checkInputs = [ sphinx numpydoc pytestCheckHook ];
|
|
propagatedBuildInputs = [ python-lz4 setuptools ];
|
|
|
|
pytestFlagsArray = [ "joblib/test" ];
|
|
disabledTests = [
|
|
"test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
|
|
"test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight pipelining: using Python functions as pipeline jobs";
|
|
homepage = "https://joblib.readthedocs.io/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|