add slack connector

This commit is contained in:
Dan 2023-02-14 16:49:55 -05:00
parent 2f7c0bdc64
commit 4b0a7daa8d
2 changed files with 22 additions and 2 deletions

23
poetry.lock generated
View File

@ -113,6 +113,24 @@ url = "https://github.com/sartography/connector-http.git"
reference = "HEAD"
resolved_reference = "337671b38f47bd8a3113bc6fa85b987828c4ee66"
[[package]]
name = "connector-slack"
version = "0.1.0"
description = "Send messages to Slack through a SpiffWorkflow Service Task"
category = "main"
optional = false
python-versions = "^3.11"
develop = false
[package.dependencies]
requests = "^2.28.1"
[package.source]
type = "git"
url = "https://github.com/sartography/connector-slack.git"
reference = "HEAD"
resolved_reference = "8390faca568f769f37412c7a58041bbad1695f31"
[[package]]
name = "Flask"
version = "2.2.2"
@ -326,7 +344,7 @@ Flask-OAuthlib = "^0.9.6"
type = "git"
url = "https://github.com/sartography/spiffworkflow-proxy"
reference = "HEAD"
resolved_reference = "f92ca9d4e7a9000909a28acfc300b2bb519cf7d2"
resolved_reference = "cfe9b93665e10390a2e64c492c57bd2613364588"
[[package]]
name = "urllib3"
@ -358,7 +376,7 @@ watchdog = ["watchdog"]
[metadata]
lock-version = "1.1"
python-versions = "^3.11"
content-hash = "e076834da50d656885e96c59beec28c2a977ef94fcbb79a6e46da9038f253bd5"
content-hash = "3ac32d6902d0f7e425db530dd3f907f3f3e3f1717c4e77c955e31f39fd3bdeec"
[metadata.files]
boto3 = [
@ -391,6 +409,7 @@ colorama = [
]
connector-aws = []
connector-http = []
connector-slack = []
Flask = [
{file = "Flask-2.2.2-py3-none-any.whl", hash = "sha256:b9c46cc36662a7949f34b52d8ec7bb59c0d74ba08ba6cb9ce9adc1d8676d9526"},
{file = "Flask-2.2.2.tar.gz", hash = "sha256:642c450d19c4ad482f96729bd2a8f6d32554aa1e231f4f6b4e7e5264b16cca2b"},

View File

@ -13,6 +13,7 @@ Flask = "^2.2.2"
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
connector-http = {git = "https://github.com/sartography/connector-http.git"}
connector-slack = {git = "https://github.com/sartography/connector-slack.git"}
gunicorn = "^20.1.0"
[build-system]