nixpkgs/pkgs/development/python-modules/stytra/default.nix
Marcin Serwin a03723889e
maintainers: drop tbenst
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-02-24 00:22:21 +01:00

92 lines
1.4 KiB
Nix

{
lib,
anytree,
arrayqueues,
av,
buildPythonPackage,
colorspacious,
fetchPypi,
flammkuchen,
git,
gitpython,
imageio,
imageio-ffmpeg,
lightparam,
matplotlib,
numba,
numpy,
opencv4,
pandas,
pims,
pyqt5,
pyqtgraph,
pyserial,
pytestCheckHook,
qdarkstyle,
qimage2ndarray,
scikit-image,
scipy,
setuptools,
tables,
}:
buildPythonPackage rec {
pname = "stytra";
version = "0.8.34";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "aab9d07575ef599a9c0ae505656e3c03ec753462df3c15742f1f768f2b578f0a";
};
patches = [
# https://github.com/portugueslab/stytra/issues/87
./0000-workaround-pyqtgraph.patch
];
build-system = [ setuptools ];
dependencies = [
opencv4
pyqt5
pyqtgraph
numpy
scipy
numba
pandas
tables
git
scikit-image
matplotlib
qdarkstyle
gitpython
anytree
qimage2ndarray
flammkuchen
pims
colorspacious
lightparam
imageio
imageio-ffmpeg
arrayqueues
av
];
nativeCheckInputs = [
pytestCheckHook
pyserial
];
disabledTestPaths = [
# Crashes python
"stytra/tests/test_z_experiments.py"
];
meta = {
description = "Modular package to control stimulation and track behaviour";
homepage = "https://github.com/portugueslab/stytra";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}