1{ buildPythonPackage
2, lib
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "1.3.12";
8 pname = "bids-validator";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "7a244b09adfd083292ed1f7ff335676a1e2effbbffe62b02a4abaf377d33ef86";
13 };
14
15 propagatedBuildInputs = [ ];
16
17 meta = with lib; {
18 description = "Validator for the Brain Imaging Data Structure";
19 homepage = "https://github.com/bids-standard/bids-validator";
20 license = licenses.mit;
21 maintainers = with maintainers; [ jonringer ];
22 };
23}