nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
2023-01-05 01:08:53 +01:00

27 lines
600 B
Nix

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