nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 43 lines 850 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 6 # build-system 7 setuptools, 8 versioneer, 9 10 # dependencies 11 bidsschematools, 12}: 13 14buildPythonPackage rec { 15 pname = "bids-validator"; 16 version = "1.14.7.post0"; 17 pyproject = true; 18 19 src = fetchPypi { 20 pname = "bids_validator"; 21 inherit version; 22 hash = "sha256-5gBaUAt1+KlhWT+2fUYIUQfa2xFvWaXDtSSqBpeUW2Y="; 23 }; 24 25 build-system = [ 26 setuptools 27 versioneer 28 ]; 29 30 dependencies = [ 31 bidsschematools 32 ]; 33 34 pythonImportsCheck = [ "bids_validator" ]; 35 36 meta = { 37 description = "Validator for the Brain Imaging Data Structure"; 38 homepage = "https://github.com/bids-standard/bids-validator"; 39 changelog = "https://github.com/bids-standard/bids-validator/releases/tag/v${version}"; 40 license = lib.licenses.mit; 41 maintainers = with lib.maintainers; [ wegank ]; 42 }; 43}