Files
nixpkgs/pkgs/development/python-modules/neo/default.nix
2026-05-04 23:26:30 +07:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
packaging,
quantities,
setuptools,
pytestCheckHook,
pillow,
which,
}:
buildPythonPackage rec {
pname = "neo";
version = "0.14.4";
pyproject = true;
src = fetchFromGitHub {
owner = "NeuralEnsemble";
repo = "python-neo";
tag = version;
hash = "sha256-VdT7PFSle8HxWfsPrrI+mHtsTO315+Sw0RGx8HSYtwk=";
};
build-system = [ setuptools ];
dependencies = [
numpy
packaging
quantities
];
nativeCheckInputs = [
pytestCheckHook
pillow
which
];
disabledTestPaths = [
# Requires network and export HOME dir
"neo/test/rawiotest/test_maxwellrawio.py"
];
disabledTests = [
# numpy 2.x boolean index strictness regression
"test__time_slice_deepcopy_data"
];
pythonImportsCheck = [ "neo" ];
meta = {
description = "Package for representing electrophysiology data";
homepage = "https://neuralensemble.org/neo/";
changelog = "https://neo.readthedocs.io/en/${src.tag}/releases/${src.tag}.html";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}