Merge pull request #163435 from r-ryantm/auto-update/python3.10-neo
python310Packages.neo: 0.10.1 -> 0.10.2
This commit is contained in:
commit
5a0cda8d0b
1 changed files with 17 additions and 6 deletions
|
@ -9,25 +9,36 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "neo";
|
||||
version = "0.10.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
version = "0.10.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-RE/xUnjdz541d4IOh4z2ufQiDOFFvxATyPMFNs9gk5s=";
|
||||
sha256 = "sha256-LUIYsIJtruqIDhVSJwYAKew4oAI4zrXwlxONlGfGOZs=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy quantities ];
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
quantities
|
||||
];
|
||||
|
||||
checkInputs = [ nose ];
|
||||
checkInputs = [
|
||||
nose
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests --exclude=iotest
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"neo"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Package for representing electrophysiology data";
|
||||
homepage = "https://neuralensemble.org/neo/";
|
||||
description = "Package for representing electrophysiology data in Python";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue