about summary refs log tree commit diff
path: root/pkgs/tools/misc/bmap-tools/default.nix
blob: 2f36c452fcb15dbc7458bedfc138cd8a7aa95bcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "bmap-tools";
  version = "3.6";

  src = fetchFromGitHub {
    owner = "intel";
    repo = "bmap-tools";
    rev = "v${version}";
    sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
  };

  propagatedBuildInputs = with python3Packages; [ six ];

  # tests fail only on hydra.
  doCheck = false;

  meta = with lib; {
    description = "bmap-related tools";
    homepage = "https://github.com/intel/bmap-tools";
    license = licenses.gpl2Only;
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
    mainProgram = "bmaptool";
  };
}