Unverified Commit af67f9ba authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant-custom-components: various cleanups (#456026)

parents f9d90efb 68735fa3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

buildPythonPackage rec {
  pname = "benqprojector";
  version = "0.1.8";
  version = "0.1.9";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rrooggiieerr";
    repo = "benqprojector.py";
    tag = version;
    hash = "sha256-BttaLpjiybjeoJhOXfo6Qlox4bRqf9auvNg/wtm9gMQ=";
    hash = "sha256-oG6djfmBnZyb4YpB6zqzHlcmQx+l+LF5xwCdf/NOb1Q=";
  };

  build-system = [
+0 −4
Original line number Diff line number Diff line
@@ -22,10 +22,6 @@ home-assistant.python.pkgs.buildPythonPackage (
    pname = "${owner}/${domain}";
    inherit version format;

    buildPhase = ''
      true
    '';

    installPhase = ''
      runHook preInstall

+0 −26
Original line number Diff line number Diff line
{
  lib,
  buildHomeAssistantComponent,
  fetchFromGitHub,
}:

buildHomeAssistantComponent rec {
  owner = "BeryJu";
  domain = "auth_header";
  version = "1.12";

  src = fetchFromGitHub {
    inherit owner;
    repo = "hass-auth-header";
    tag = "v${version}";
    hash = "sha256-BPG/G6IM95g9ip2OsPmcAebi2ZvKHUpFzV4oquOFLPM=";
  };

  meta = with lib; {
    changelog = "https://github.com/BeryJu/hass-auth-header/releases/tag/v${version}";
    description = "Home Assistant custom component which allows you to delegate authentication to a reverse proxy";
    homepage = "https://github.com/BeryJu/hass-auth-header";
    maintainers = with maintainers; [ mjm ];
    license = licenses.gpl3;
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@
buildHomeAssistantComponent rec {
  owner = "rrooggiieerr";
  domain = "benqprojector";
  version = "0.1.3";
  version = "0.1.4";

  src = fetchFromGitHub {
    inherit owner;
    repo = "homeassistant-benqprojector";
    tag = version;
    hash = "sha256-iAFmXL10QqudECsS9u9w7KBETzu9aWCg1EBbFR1ff+o=";
    hash = "sha256-BiAqEVZSbroxw46thsU1psjP9JEEZaGRLWgpT/lQTHI=";
  };

  dependencies = [ benqprojector ];
Loading