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

50 lines
834 B
Nix
Raw Normal View History

2019-08-06 02:07:10 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, num2words
, numpy
, scipy
, pandas
, nibabel
, patsy
, bids-validator
, sqlalchemy
, pytest
, pathlib
}:
buildPythonPackage rec {
2019-10-16 09:43:12 +00:00
version = "0.9.4";
2019-08-06 02:07:10 +00:00
pname = "pybids";
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:12 +00:00
sha256 = "08abd3573e823e536990caf54405ffef573a88ef9d019c2d94e0be995e21885f";
2019-08-06 02:07:10 +00:00
};
propagatedBuildInputs = [
num2words
numpy
scipy
pandas
nibabel
patsy
bids-validator
sqlalchemy
];
checkInputs = [ pytest ] ++ lib.optionals isPy27 [ pathlib ];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Python tools for querying and manipulating BIDS datasets";
homepage = https://github.com/bids-standard/pybids;
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}