depot/third_party/nixpkgs/pkgs/development/python-modules/bids-validator/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

26 lines
600 B
Nix

{ 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 ];
};
}