Merge pull request #147664 from arkivm/fix-slicer

slicer: fix build
This commit is contained in:
Robert Scott 2021-11-28 14:10:22 +00:00 committed by GitHub
commit 7cb6901469
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
, pytestCheckHook
, pandas
, pytorch
, scipy
}:
buildPythonPackage rec {
@ -17,7 +18,7 @@ buildPythonPackage rec {
sha256 = "f5d5f7b45f98d155b9c0ba6554fa9770c6b26d5793a3e77a1030fb56910ebeec";
};
checkInputs = [ pytestCheckHook pandas pytorch ];
checkInputs = [ pytestCheckHook pandas pytorch scipy ];
meta = with lib; {
description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__";