Files
nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
T

27 lines
613 B
Nix
Raw Normal View History

2019-08-05 19:06:12 -07:00
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
version = "1.5.7";
2019-08-05 19:06:12 -07:00
pname = "bids-validator";
src = fetchPypi {
inherit pname version;
sha256 = "624fade609636c64e7829ff072bdf12f93512948a803059b059e5c90df894be2";
2019-08-05 19:06:12 -07:00
};
2020-08-11 13:08:16 -07:00
# needs packages which are not available in nixpkgs
doCheck = false;
pythonImportsCheck = [ "bids_validator" ];
2019-08-05 19:06:12 -07: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 ];
};
}