nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 26 lines 600 B view raw
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "1.9.3"; 8 pname = "bids-validator"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-ATJi4eCWV0i3Z8AsgV/DtiCn8Qzi2cMDtId5jXCoDL0="; 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}