depot/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

26 lines
600 B
Nix

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