python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python-modules / bids-validator / default.nix
blob69c0d605c59aa249844ad1f895f034251fc595fb
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "1.9.8";
8   pname = "bids-validator";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-/zl5m7IF+S1vLDIvC47/DRwCiPQpGgsY/OYa+k39fz4=";
13   };
15   # needs packages which are not available in nixpkgs
16   doCheck = false;
18   pythonImportsCheck = [ "bids_validator" ];
20   meta = with lib; {
21     description = "Validator for the Brain Imaging Data Structure";
22     homepage = "https://github.com/bids-standard/bids-validator";
23     license = licenses.mit;
24     maintainers = with maintainers; [ jonringer ];
25   };