3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/bids-validator/default.nix

24 lines
525 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
2020-06-05 18:44:32 +01:00
version = "1.5.2";
pname = "bids-validator";
src = fetchPypi {
inherit pname version;
2020-06-05 18:44:32 +01:00
sha256 = "6f3bd0402d41ee9be03637d74f34a7db279d00cb9c6386b0597cbbac16ee8f4e";
};
propagatedBuildInputs = [ ];
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 ];
};
}