2021-02-16 09:03:59 +01:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2017-12-19 00:31:57 +02:00
|
|
|
|
2021-02-16 09:03:59 +01: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-19 00:31:57 +02:00
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "intel";
|
|
|
|
|
repo = "bmap-tools";
|
|
|
|
|
rev = "v${version}";
|
2021-02-16 03:09:55 +00:00
|
|
|
sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
|
2017-12-19 00:31:57 +02:00
|
|
|
};
|
|
|
|
|
|
2021-02-16 09:04:59 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ six ];
|
|
|
|
|
|
2020-09-09 09:56:27 +03:00
|
|
|
# tests fail only on hydra.
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-12-19 00:31:57 +02:00
|
|
|
description = "bmap-related tools";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/intel/bmap-tools";
|
2017-12-19 00:31:57 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|