2021-02-16 08:03:59 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2017-12-18 22:31:57 +00:00
|
|
|
|
2021-02-16 08:03:59 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-08-31 12:41:23 +01: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 ];
|
|
|
|
|
2020-09-09 07:56:27 +01:00
|
|
|
# tests fail only on hydra.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-18 22:31:57 +00:00
|
|
|
description = "bmap-related tools";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/intel/bmap-tools";
|
2017-12-18 22:31:57 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|