pythonPackages.stytra: re-enable tests, remove unused input

This commit is contained in:
Sandro Jäckel 2021-02-15 23:24:36 +01:00
parent 406069a67f
commit 36d3d24c87
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k, callPackage { lib, buildPythonPackage, fetchPypi, isPy3k
, opencv3 , opencv3
, pyqt5 , pyqt5
, pyqtgraph , pyqtgraph
@ -19,7 +19,7 @@
, imageio-ffmpeg , imageio-ffmpeg
, av , av
, nose , nose
, pytest , pytestCheckHook
, pyserial , pyserial
, arrayqueues , arrayqueues
, colorspacious , colorspacious
@ -37,14 +37,18 @@ buildPythonPackage rec {
inherit pname version; inherit pname version;
sha256 = "aab9d07575ef599a9c0ae505656e3c03ec753462df3c15742f1f768f2b578f0a"; sha256 = "aab9d07575ef599a9c0ae505656e3c03ec753462df3c15742f1f768f2b578f0a";
}; };
doCheck = false;
# crashes python
preCheck = ''
rm stytra/tests/test_z_experiments.py
'';
checkInputs = [ checkInputs = [
nose nose
pytest pytestCheckHook
pyserial pyserial
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
opencv3 opencv3
pyqt5 pyqt5