heisenbridge: 1.1.2 -> 1.2.0

See release notes https://github.com/hifi/heisenbridge/releases/tag/v1.2.0

Adds the mautrix-python dependency
This commit is contained in:
Sumner Evans 2021-09-23 07:45:41 -06:00
parent c199b9c164
commit 2f04ac8561
No known key found for this signature in database
GPG Key ID: 8904527AB50022FD

View File

@ -2,18 +2,19 @@
python3Packages.buildPythonPackage rec {
pname = "heisenbridge";
version = "1.1.2";
version = "1.2.0";
# Use the release tarball because it has the version set correctly using the
# version.txt file.
src = fetchurl {
url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-${version}.tar.gz";
sha256 = "sha256-hY0dB4QT9W18ubUytvJwRUWKpNQMpyYdSLbmu+c8BCo=";
sha256 = "sha256-xSqtgUlB7/4QWsq5+8YhxxfQyufpuscIIROJnlnFZn0=";
};
propagatedBuildInputs = with python3Packages; [
aiohttp
irc
mautrix
pyyaml
];