Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 613 B view raw
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "1.6.0"; 8 pname = "bids-validator"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "6858eab83068d34a9d41155c931ca8db9faef2272710d9730c2135915c19be82"; 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}