1{ buildPythonPackage
2, lib
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "1.9.8";
8 pname = "bids-validator";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-/zl5m7IF+S1vLDIvC47/DRwCiPQpGgsY/OYa+k39fz4=";
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}