python3Packages.boxx: fix build (#382056)

This commit is contained in:
Pavol Rusnak
2025-02-14 15:01:44 +01:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
python,
@@ -10,7 +11,6 @@
pandas,
imageio,
snakeviz,
fn,
pyopengl,
seaborn,
torch,
@@ -37,7 +37,6 @@ buildPythonPackage rec {
pandas
imageio
snakeviz
fn
pyopengl
seaborn
];
@@ -50,6 +49,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "boxx" ];
doCheck = stdenv.hostPlatform.isLinux;
checkPhase = ''
xvfb-run ${python.interpreter} -m unittest
'';