nixpkgs/pkgs/by-name/bm/bmaptool/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
672 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2017-12-18 22:31:57 +00:00
python3Packages.buildPythonApplication rec {
pname = "bmaptool";
2024-08-05 09:59:37 +00:00
version = "3.8.0";
2017-12-18 22:31:57 +00:00
src = fetchFromGitHub {
owner = "yoctoproject";
repo = "bmaptool";
2017-12-18 22:31:57 +00:00
rev = "v${version}";
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 ];
# tests fail only on hydra.
doCheck = false;
meta = with lib; {
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
};
}