python313Packages.triggercmd: init at 0.0.27 (#431661)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user