Unverified Commit 0b625dc5 authored by Hendrik Sokolowski's avatar Hendrik Sokolowski Committed by GitHub
Browse files

python3Packages.ghome-foyer-api: init at 1.1.1 (#380790)



* python-modules.ghome-foyer-api: init at 1.1.1

* Update pkgs/development/python-modules/ghome-foyer-api/default.nix

---------

Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent 95ca985a
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  grpcio,
  hatchling,
  hatch-vcs,
  protobuf,
}:

buildPythonPackage rec {
  pname = "ghome-foyer-api";
  version = "1.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "KapJI";
    repo = "ghome-foyer-api";
    tag = "v${version}";
    hash = "sha256-sup+j9GFGTR+HimpkpvvAqtgYWtJt2qCPZzLvMG8hzI=";
  };

  buildInputs = [
    hatchling
    hatch-vcs
  ];

  propagatedBuildInputs = [
    grpcio
    protobuf
  ];

  meta = {
    description = "Generated Python protobuf stubs for Google Home internal API";
    homepage = "https://github.com/KapJI/ghome-foyer-api";
    changelog = "https://github.com/KapJI/ghome-foyer-api/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      hensoko
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5291,6 +5291,8 @@ self: super: with self; {
  ghdiff = callPackage ../development/python-modules/ghdiff { };
  ghome-foyer-api = callPackage ../development/python-modules/ghome-foyer-api { };
  ghp-import = callPackage ../development/python-modules/ghp-import { };
  ghrepo-stats = callPackage ../development/python-modules/ghrepo-stats { };