1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #139165 from sumnerevans/heisenbridge-1.2.0

heisenbridge: 1.1.2 -> 1.2.0
This commit is contained in:
ajs124 2021-09-23 23:07:16 +02:00 committed by GitHub
commit fc2f8520b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,18 +2,19 @@
python3Packages.buildPythonPackage rec { python3Packages.buildPythonPackage rec {
pname = "heisenbridge"; pname = "heisenbridge";
version = "1.1.2"; version = "1.2.0";
# Use the release tarball because it has the version set correctly using the # Use the release tarball because it has the version set correctly using the
# version.txt file. # version.txt file.
src = fetchurl { src = fetchurl {
url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-${version}.tar.gz"; 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; [ propagatedBuildInputs = with python3Packages; [
aiohttp aiohttp
irc irc
mautrix
pyyaml pyyaml
]; ];