nixpkgs/pkgs/development/python-modules/nitime/default.nix

37 lines
794 B
Nix
Raw Normal View History

2020-02-26 19:01:03 +01:00
{ lib
, buildPythonPackage
, python
, fetchPypi
, pytestCheckHook
2020-02-26 19:01:03 +01:00
, cython
, numpy
, scipy
, matplotlib
, networkx
, nibabel
}:
buildPythonPackage rec {
pname = "nitime";
version = "0.8.1";
disabled = python.pythonVersion != "3.7"; # gcc error when running Cython with Python 3.8
src = fetchPypi {
inherit pname version;
sha256 = "0hb3x5196z2zaawb8s7lhja0vd3n983ncaynqfl9qg315x9ax7i6";
};
buildInputs = [ cython ];
2020-02-26 19:01:03 +01:00
propagatedBuildInputs = [ numpy scipy matplotlib networkx nibabel ];
checkInputs = [ pytestCheckHook ];
2020-02-26 19:01:03 +01:00
meta = with lib; {
homepage = "https://nipy.org/nitime";
2020-02-26 19:01:03 +01:00
description = "Algorithms and containers for time-series analysis in time and spectral domains";
license = licenses.bsd3;
maintainers = [ maintainers.bcdarwin ];
};
}