python3Packages.dbf: Fix not running hooks in checkPhase

This commit is contained in:
Andrew Marshall 2024-03-26 20:48:16 -04:00
parent 57610d2f8f
commit 923d79c8e2

View File

@ -22,7 +22,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ aenum ];
checkPhase = ''
runHook preCheck
${python.interpreter} -m dbf.test
runHook postCheck
'';
pythonImportsCheck = [ "dbf" ];