python3Packages.nitime: 0.8.1 -> 0.9
This commit is contained in:
parent
9a095e62d6
commit
2d32864d00
@ -2,6 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, python
|
, python
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy27
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, cython
|
, cython
|
||||||
, numpy
|
, numpy
|
||||||
@ -13,19 +14,17 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nitime";
|
pname = "nitime";
|
||||||
version = "0.8.1";
|
version = "0.9";
|
||||||
disabled = python.pythonVersion != "3.7"; # gcc error when running Cython with Python 3.8
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0hb3x5196z2zaawb8s7lhja0vd3n983ncaynqfl9qg315x9ax7i6";
|
sha256 = "sha256-bn2QrbsfqUJim84vH5tt5T6h3YsGAlgu9GCMiNQ0OHQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cython ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy scipy matplotlib networkx nibabel ];
|
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
buildInputs = [ cython ];
|
||||||
|
propagatedBuildInputs = [ numpy scipy matplotlib networkx nibabel ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://nipy.org/nitime";
|
homepage = "https://nipy.org/nitime";
|
||||||
|
Loading…
Reference in New Issue
Block a user