python3Packages.Theano: add pythonImportsCheck

this not only gives us a "hint" of test coverage, but also proves the fix
from #97597 allows import of theano from within a sandboxed build
gstqt5
Robert Scott 2020-10-17 20:23:54 +01:00
parent a60ed8e2db
commit 4a9dba6c44
1 changed files with 5 additions and 1 deletions

View File

@ -68,7 +68,9 @@ in buildPythonPackage rec {
--replace 'StrParam(default_dnn_base_path)' 'StrParam('\'''${cudnn}'\''')'
'';
preCheck = ''
# needs to be postFixup so it runs before pythonImportsCheck even when
# doCheck = false (meaning preCheck would be disabled)
postFixup = ''
mkdir -p check-phase
export HOME=$(pwd)/check-phase
'';
@ -81,6 +83,8 @@ in buildPythonPackage rec {
checkInputs = [ nose ];
propagatedBuildInputs = [ numpy numpy.blas scipy six libgpuarray_ ];
pythonImportsCheck = [ "theano" ];
meta = with stdenv.lib; {
homepage = "http://deeplearning.net/software/theano/";
description = "A Python library for large-scale array computation";