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

37 lines
735 B
Nix
Raw Normal View History

2017-09-13 09:34:39 +02:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2017-09-13 09:34:39 +02:00
, sphinx
, numpydoc
, pytest
, python-lz4
2017-09-13 09:34:39 +02:00
}:
buildPythonPackage rec {
pname = "joblib";
version = "0.12.4";
# get full repository inorder to run tests
src = fetchFromGitHub {
owner = "joblib";
repo = pname;
rev = version;
sha256 = "06zszgp7wpa4jr554wkk6kkigp4k9n5ad5h08i6w9qih963rlimb";
2017-09-13 09:34:39 +02:00
};
checkInputs = [ sphinx numpydoc pytest ];
propagatedBuildInputs = [ python-lz4 ];
2017-09-13 09:34:39 +02:00
checkPhase = ''
py.test joblib
2017-09-13 09:34:39 +02:00
'';
meta = {
description = "Lightweight pipelining: using Python functions as pipeline jobs";
2018-06-27 22:12:57 +02:00
homepage = https://pythonhosted.org/joblib/;
2017-09-13 09:34:39 +02:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ costrouc ];
2017-09-13 09:34:39 +02:00
};
}