depot/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix

27 lines
613 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
version = "1.8.0";
pname = "bids-validator";
src = fetchPypi {
inherit pname version;
sha256 = "6d4ecc384121899e0cd5af773419c5ba722585cb176544560ec9a48f17dfd777";
};
# 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 ];
};
}