summary refs log tree commit diff
path: root/pkgs/development/python-modules/bids-validator/default.nix
blob: 6b7bad58bc4c6071b392e66b6fb587ef9ac1b4bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage
, lib
, fetchPypi
}:

buildPythonPackage rec {
  version = "1.3.12";
  pname = "bids-validator";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7a244b09adfd083292ed1f7ff335676a1e2effbbffe62b02a4abaf377d33ef86";
  };

  propagatedBuildInputs = [ ];

  meta = with lib; {
    description = "Validator for the Brain Imaging Data Structure";
    homepage = "https://github.com/bids-standard/bids-validator";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };
}