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 {
|
2024-08-05 07:40:46 +00:00
|
|
|
pname = "bmaptool";
|
2024-08-05 09:59:37 +00:00
|
|
|
version = "3.8.0";
|
2017-12-18 22:31:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-08-05 07:40:46 +00:00
|
|
|
owner = "yoctoproject";
|
|
|
|
repo = "bmaptool";
|
2017-12-18 22:31:57 +00:00
|
|
|
rev = "v${version}";
|
2024-09-14 21:47:11 +00:00
|
|
|
hash = "sha256-YPY3sNuZ/TASNBPH94iqG6AuBRq5KjioKiuxAcu94+I=";
|
2017-12-18 22:31:57 +00:00
|
|
|
};
|
|
|
|
|
2021-02-16 08:04:59 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ six ];
|
|
|
|
|
2020-09-09 06:56:27 +00:00
|
|
|
# tests fail only on hydra.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2024-08-05 07:40:46 +00:00
|
|
|
description = "BMAP Tools";
|
|
|
|
homepage = "https://github.com/yoctoproject/bmaptool";
|
2024-04-26 11:35:31 +00:00
|
|
|
license = licenses.gpl2Only;
|
2017-12-18 22:31:57 +00:00
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "bmaptool";
|
2017-12-18 22:31:57 +00:00
|
|
|
};
|
|
|
|
}
|