ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / bm / bmaptool / package.nix
blobc97b13d26a38882e3de4195d87bdd48ae937137c
2   lib,
3   fetchFromGitHub,
4   python3Packages,
5 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "bmaptool";
9   version = "3.8.0";
11   src = fetchFromGitHub {
12     owner = "yoctoproject";
13     repo = "bmaptool";
14     rev = "v${version}";
15     hash = "sha256-YPY3sNuZ/TASNBPH94iqG6AuBRq5KjioKiuxAcu94+I=";
16   };
18   propagatedBuildInputs = with python3Packages; [ six ];
20   # tests fail only on hydra.
21   doCheck = false;
23   meta = with lib; {
24     description = "BMAP Tools";
25     homepage = "https://github.com/yoctoproject/bmaptool";
26     license = licenses.gpl2Only;
27     maintainers = [ maintainers.dezgeg ];
28     platforms = platforms.linux;
29     mainProgram = "bmaptool";
30   };