python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bmap-tools / default.nix
blobc78c0121ed0c7826614b3a32a120282b978806e8
1 { lib, fetchFromGitHub, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "bmap-tools";
5   version = "3.6";
7   src = fetchFromGitHub {
8     owner = "intel";
9     repo = "bmap-tools";
10     rev = "v${version}";
11     sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
12   };
14   propagatedBuildInputs = with python3Packages; [ six ];
16   # tests fail only on hydra.
17   doCheck = false;
19   meta = with lib; {
20     description = "bmap-related tools";
21     homepage = "https://github.com/intel/bmap-tools";
22     license = licenses.gpl2;
23     maintainers = [ maintainers.dezgeg ];
24     platforms = platforms.linux;
25   };