27 lines
613 B
Nix
27 lines
613 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.6.0";
|
|
pname = "bids-validator";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6858eab83068d34a9d41155c931ca8db9faef2272710d9730c2135915c19be82";
|
|
};
|
|
|
|
# needs packages which are not available in nixpkgs
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "bids_validator" ];
|
|
|
|
meta = with lib; {
|
|
description = "Validator for the Brain Imaging Data Structure";
|
|
homepage = "https://github.com/bids-standard/bids-validator";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|