11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
22 sha256 = "sha256-VcX3pCczZQUYZaD7xrrkOcj0QPJt28cYTwpZm5D/X3c=";
25 propagatedBuildInputs = [
36 # nose is not actually required for anything
37 # (including testing with the minimal dependencies)
38 substituteInPlace setup.py \
39 --replace ", 'nose'" ""
42 pythonImportsCheck = [
51 # AssertionError: Partial_SVD took too long, maybe full_matrices set wrongly
56 description = "Tensor learning in Python";
57 homepage = "https://tensorly.org/";
58 license = licenses.bsd3;
59 maintainers = with maintainers; [ bcdarwin ];