linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pybids / default.nix
blob034bdb6363a0adb2a824538ca5a14ee72642d477
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , click
5 , num2words
6 , numpy
7 , scipy
8 , pandas
9 , nibabel
10 , patsy
11 , bids-validator
12 , sqlalchemy
13 , pytestCheckHook
16 buildPythonPackage rec {
17   version = "0.12.4";
18   pname = "pybids";
20   src = fetchPypi {
21     inherit pname version;
22     sha256 = "830f3f518ab0d2e058e9ba6d6ff9a942792909c874433b3ad58a3339a23f46bf";
23   };
25   propagatedBuildInputs = [
26     click
27     num2words
28     numpy
29     scipy
30     pandas
31     nibabel
32     patsy
33     bids-validator
34     sqlalchemy
35   ];
37   checkInputs = [ pytestCheckHook ];
38   pythonImportsCheck = [ "bids" ];
40   meta = with lib; {
41     description = "Python tools for querying and manipulating BIDS datasets";
42     homepage = "https://github.com/bids-standard/pybids";
43     license = licenses.mit;
44     maintainers = with maintainers; [ jonringer ];
45   };