2019-08-06 03:06:12 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-03 06:20:28 +00:00
|
|
|
version = "1.6.0";
|
2019-08-06 03:06:12 +01:00
|
|
|
pname = "bids-validator";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-03 06:20:28 +00:00
|
|
|
sha256 = "6858eab83068d34a9d41155c931ca8db9faef2272710d9730c2135915c19be82";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|