1{ buildPythonPackage
2, lib
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "1.8.4";
8 pname = "bids-validator";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "63e7a02c9ddb5505a345e178f4e436b82c35ec0a177d7047b67ea10ea3029a68";
13 };
14
15 # needs packages which are not available in nixpkgs
16 doCheck = false;
17
18 pythonImportsCheck = [ "bids_validator" ];
19
20 meta = with lib; {
21 description = "Validator for the Brain Imaging Data Structure";
22 homepage = "https://github.com/bids-standard/bids-validator";
23 license = licenses.mit;
24 maintainers = with maintainers; [ jonringer ];
25 };
26}