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