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

python313Packages.triggercmd: init at 0.0.27 (#431661)

parents e84ba3df 08e64775
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  requests,
  websocket-client,
  pyjwt,
}:

buildPythonPackage rec {
  pname = "triggercmd";
  version = "0.0.27";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-4MTRtDo4kD/1Bifw8wx++TZ3K2M4TMVRyvwqGL5cHC8=";
  };

  build-system = [ setuptools ];

  dependencies = [
    requests
    websocket-client
    pyjwt
  ];

  # Tests require network access and authentication tokens
  doCheck = false;

  pythonImportsCheck = [ "triggercmd" ];

  meta = {
    description = "Python agent for TRIGGERcmd cloud service";
    homepage = "https://github.com/rvmey/triggercmd-python-agent";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -6159,7 +6159,8 @@
      ];
    "triggercmd" =
      ps: with ps; [
      ]; # missing inputs: triggercmd
        triggercmd
      ];
    "tts" =
      ps: with ps; [
        ha-ffmpeg
@@ -7681,6 +7682,7 @@
    "transmission"
    "transport_nsw"
    "trend"
    "triggercmd"
    "tts"
    "tuya"
    "twentemilieu"
+2 −0
Original line number Diff line number Diff line
@@ -18348,6 +18348,8 @@ self: super: with self; {
  trie = callPackage ../development/python-modules/trie { };
  triggercmd = callPackage ../development/python-modules/triggercmd { };
  trimesh = callPackage ../development/python-modules/trimesh { };
  trino-python-client = callPackage ../development/python-modules/trino-python-client { };