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

27 lines
639 B
Nix
Raw Normal View History

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