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