2019-08-06 03:06:12 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-07-31 09:56:36 +01:00
|
|
|
version = "1.5.4";
|
2019-08-06 03:06:12 +01:00
|
|
|
pname = "bids-validator";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 09:56:36 +01:00
|
|
|
sha256 = "b8292f4efb3617532f93c60acfec242150406bfd9e298d7f01187d67c311aa91";
|
2019-08-06 03:06:12 +01:00
|
|
|
};
|
|
|
|
|
2020-08-11 21:08:16 +01:00
|
|
|
# needs packages which are not available in nixpkgs
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "bids_validator" ];
|
2019-08-06 03:06:12 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|