27 lines
639 B
Nix
27 lines
639 B
Nix
{ 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.gpl2;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|