nixpkgs/pkgs/tools/misc/bmap-tools/default.nix

27 lines
639 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2017-12-18 14:31:57 -08:00
python3Packages.buildPythonApplication rec {
2019-08-31 04:41:23 -07:00
pname = "bmap-tools";
2021-02-15 19:09:55 -08:00
version = "3.6";
2017-12-18 14:31:57 -08:00
src = fetchFromGitHub {
owner = "intel";
repo = "bmap-tools";
rev = "v${version}";
2021-02-15 19:09:55 -08:00
sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
2017-12-18 14:31:57 -08:00
};
2021-02-16 00:04:59 -08:00
propagatedBuildInputs = with python3Packages; [ six ];
# tests fail only on hydra.
doCheck = false;
meta = with lib; {
2017-12-18 14:31:57 -08:00
description = "bmap-related tools";
homepage = "https://github.com/intel/bmap-tools";
2017-12-18 14:31:57 -08:00
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}