Unverified Commit 76763c7d authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

bmaptool: 3.8.0 -> 3.9.0 (#433408)

parents 569c6298 f660eef7
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
@@ -6,27 +6,31 @@

python3Packages.buildPythonApplication rec {
  pname = "bmaptool";
  version = "3.8.0";
  format = "setuptools";
  version = "3.9.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "yoctoproject";
    repo = "bmaptool";
    rev = "v${version}";
    hash = "sha256-YPY3sNuZ/TASNBPH94iqG6AuBRq5KjioKiuxAcu94+I=";
    hash = "sha256-9KSBv420HJvK5fUg7paFJqA2MCw36BfaeAG4NME/co8=";
  };

  propagatedBuildInputs = with python3Packages; [ six ];
  build-system = [
    python3Packages.hatchling
  ];

  dependencies = with python3Packages; [ six ];

  # tests fail only on hydra.
  doCheck = false;

  meta = with lib; {
  meta = {
    description = "BMAP Tools";
    homepage = "https://github.com/yoctoproject/bmaptool";
    license = licenses.gpl2Only;
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ dezgeg ];
    platforms = lib.platforms.linux;
    mainProgram = "bmaptool";
  };
}