summary refs log tree commit diff
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2021-08-25 15:01:52 -0400
committerBruno Bigras <bigras.bruno@gmail.com>2021-08-25 15:03:53 -0400
commitcccfa0e1d9b2e368913984c494dd3604ab5501ea (patch)
treeb0d7cd615bb430f671be11e5da16d719ae1f65b8
parent3f2c99d8a1c668991f4d92bc1815741e72c34ec4 (diff)
downloadnixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar.gz
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar.bz2
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar.lz
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar.xz
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.tar.zst
nixpkgs-cccfa0e1d9b2e368913984c494dd3604ab5501ea.zip
pantalaimon: 0.9.2 -> 0.10.2
-rw-r--r--pkgs/applications/networking/instant-messengers/pantalaimon/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
index 7cfa889d280..153819fc841 100644
--- a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, buildPythonApplication, fetchFromGitHub, pythonOlder,
   attrs, aiohttp, appdirs, click, keyring, Logbook, peewee, janus,
   prompt-toolkit, matrix-nio, dbus-python, pydbus, notify2, pygobject3,
-  setuptools, fetchpatch, installShellFiles,
+  setuptools, installShellFiles,
 
   pytest, faker, pytest-aiohttp, aioresponses,
 
@@ -10,7 +10,7 @@
 
 buildPythonApplication rec {
   pname = "pantalaimon";
-  version = "0.9.2";
+  version = "0.10.2";
 
   disabled = pythonOlder "3.6";
 
@@ -19,17 +19,9 @@ buildPythonApplication rec {
     owner = "matrix-org";
     repo = pname;
     rev = version;
-    sha256 = "11dfv5b2slqybisq6npmrqxrzslh4bjs4093vrc05s94046d9d9n";
+    sha256 = "sha256-sjaJomKMKSZqLlKWTG7Oa87dXa5SnGQlVnrdS707A1w=";
   };
 
-  patches = [
-    # accept newer matrix-nio versions
-    (fetchpatch {
-      url = "https://github.com/matrix-org/pantalaimon/commit/73f68c76fb05037bd7fe71688ce39eb1f526a385.patch";
-      sha256 = "0wvqcfan8yp67p6khsqkynbkifksp2422b9jy511mvhpy51sqykl";
-    })
-  ];
-
   propagatedBuildInputs = [
     aiohttp
     appdirs