My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/bids-validator/default.nix

26 lines
600 B

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