567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
numpy,
|
|
packaging,
|
|
quantities,
|
|
pythonOlder,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
pillow,
|
|
which,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "neo";
|
|
version = "0.14.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NeuralEnsemble";
|
|
repo = "python-neo";
|
|
tag = version;
|
|
hash = "sha256-y2MGzIfF+KrEzdjUxiDaU1ZKBK5FksX1IBJdc9RvLhM=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
numpy
|
|
packaging
|
|
quantities
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pillow
|
|
which
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Requires network and export HOME dir
|
|
"neo/test/rawiotest/test_maxwellrawio.py"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|