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 {
|
buildPythonPackage rec {
|
||||||
pname = "neo";
|
pname = "neo";
|
||||||
version = "0.10.1";
|
version = "0.10.2";
|
||||||
disabled = pythonOlder "3.6";
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-RE/xUnjdz541d4IOh4z2ufQiDOFFvxATyPMFNs9gk5s=";
|
sha256 = "sha256-LUIYsIJtruqIDhVSJwYAKew4oAI4zrXwlxONlGfGOZs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy quantities ];
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
quantities
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [
|
||||||
|
nose
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
nosetests --exclude=iotest
|
nosetests --exclude=iotest
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"neo"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Package for representing electrophysiology data";
|
||||||
homepage = "https://neuralensemble.org/neo/";
|
homepage = "https://neuralensemble.org/neo/";
|
||||||
description = "Package for representing electrophysiology data in Python";
|
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ bcdarwin ];
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue