summary refs log tree commit diff
path: root/pkgs/servers/mautrix-telegram
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-12-28 13:11:27 +0100
committerJon <jonringer@users.noreply.github.com>2019-12-29 19:56:05 -0800
commit95ee079ae672c7849a64ee7a6b5f8147698e8b6f (patch)
tree723e372554c06c4f019c7bc97a755d338426d114 /pkgs/servers/mautrix-telegram
parent298b3fb0a50610eddea330516ce74e2489ef8079 (diff)
downloadnixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar.gz
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar.bz2
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar.lz
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar.xz
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.tar.zst
nixpkgs-95ee079ae672c7849a64ee7a6b5f8147698e8b6f.zip
mautrix-telegram: 0.6.1 -> 0.7.0
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc4
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc3
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc2
https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc1
Diffstat (limited to 'pkgs/servers/mautrix-telegram')
-rw-r--r--pkgs/servers/mautrix-telegram/default.nix16
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/servers/mautrix-telegram/default.nix b/pkgs/servers/mautrix-telegram/default.nix
index e27e8bef6e8..f30f667dabb 100644
--- a/pkgs/servers/mautrix-telegram/default.nix
+++ b/pkgs/servers/mautrix-telegram/default.nix
@@ -4,23 +4,19 @@ with python3.pkgs;
 
 buildPythonPackage rec {
   pname = "mautrix-telegram";
-  version = "0.6.1";
+  version = "0.7.0";
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1lsi6x5yr8f9yjxsh1rmcd6wnxr6s6rpr720lg7sq629m42d9p1d";
+    sha256 = "0xzivcn1s5j2nn9p7li9bzr0h225bnli4fr3yrh8v7npx2ymg1r3";
   };
 
   patches = [
+    # fix tests
     (fetchpatch {
-      url = https://github.com/tulir/mautrix-telegram/commit/be6d395ed66d86ec7f13a262f9ae37731987019c.patch;
-      sha256 = "1q69ip17r45yhyrxr0pj8bvqj2grw2l39wak8pi5pm7qrxra93j2";
-    })
-    # bump dependencies, remove on next bump
-    (fetchpatch {
-      url = "https://github.com/tulir/mautrix-telegram/commit/cdee0df5ab9e04d6831e34590959496061c6621c.patch";
-      sha256 = "0sbfaais0jgg305dcjg9hn8b975ymdivvhmlzsxm1nm2ksa4c0v1";
+      url = "https://github.com/tulir/mautrix-telegram/commit/fe52f0ad106122f08af72e356c4c62bb8875b453.patch";
+      sha256 = "0r7j7q78brqqx0rkchld328k00yq0ykdk7syvwpihqzj3gchacb7";
     })
   ];
 
@@ -33,7 +29,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [
     Mako
     aiohttp
-    mautrix-appservice
+    mautrix
     sqlalchemy
     CommonMark
     ruamel_yaml