Unverified Commit 449990d8 authored by Cosima Neidahl's avatar Cosima Neidahl Committed by GitHub
Browse files

Merge pull request #323368 from OPNA2608/update/clickable

clickable: Add Lomiri team to maintainers, 7.11.0 -> 8.2.0
parents df2e4d4a 0edbce6f
Loading
Loading
Loading
Loading
+87 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitLab
, buildPythonPackage
, cookiecutter
, requests
, pyyaml
, jsonschema
, argcomplete
, pytestCheckHook
, watchdog
, stdenv
{
  lib,
  fetchFromGitLab,
  gitUpdater,
  python3Packages,
  stdenv,
}:

buildPythonPackage rec {
python3Packages.buildPythonApplication rec {
  pname = "clickable";
  version = "7.11.0";
  version = "8.2.0";

  src = fetchFromGitLab {
    owner = "clickable";
    repo = "clickable";
    rev = "v${version}";
    sha256 = "sha256-OVS+FK2ABoKbBFLDc3drcjeaa3yO9/8Ah8FzlN2fd8g=";
    sha256 = "sha256-MFzpeiWeqJ0MG8ouwRkYXD1e6Nsxshmz1NSzCIBRjZ0=";
  };

  propagatedBuildInputs = [
  propagatedBuildInputs = with python3Packages; [
    cookiecutter
    requests
    pyyaml
@@ -31,9 +26,10 @@ buildPythonPackage rec {
    watchdog
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [ python3Packages.pytestCheckHook ];

  disabledTests = [
  disabledTests =
    [
      # Tests require docker
      "test_cpp_plugin"
      "test_html"
@@ -66,7 +62,9 @@ buildPythonPackage rec {
      "test_devices"
      "test_install"
      "test_skip_container_mode"
  ] ++
      "test_godot_plugin"
    ]
    ++
    # There are no docker images available for the aarch64 architecutre
    # which are required for tests.
    lib.optionals stdenv.isAarch64 [
@@ -74,12 +72,16 @@ buildPythonPackage rec {
      "test_restricted_arch"
    ];

  passthru.updateScript = gitUpdater { rev-prefix = "v"; };

  meta = {
    description = "Build system for Ubuntu Touch apps";
    mainProgram = "clickable";
    homepage = "https://clickable-ut.dev";
    changelog = "https://clickable-ut.dev/en/latest/changelog.html";
    changelog = "https://clickable-ut.dev/en/latest/changelog.html#changes-in-v${
      lib.strings.replaceStrings [ "." ] [ "-" ] version
    }";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ ilyakooo0 ];
    maintainers = lib.teams.lomiri.members ++ (with lib.maintainers; [ ilyakooo0 ]);
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -15175,8 +15175,6 @@ with pkgs;
  clean = callPackage ../development/compilers/clean { };
  clickable = python3Packages.callPackage ../development/tools/clickable { };
  closurecompiler = callPackage ../development/compilers/closure { };
  cmdstan = callPackage ../development/compilers/cmdstan { };