poezio: 0.11 -> 0.12

This commit is contained in:
Linus Heckemann 2018-10-16 11:40:15 +02:00
parent ec9d761628
commit e83b15c1b1
2 changed files with 5 additions and 20 deletions

View File

@ -1,12 +0,0 @@
diff -Nur poezio-0.10.orig/plugins/gpg/__init__.py poezio-0.10/plugins/gpg/__init__.py
--- poezio-0.10.orig/plugins/gpg/__init__.py 2016-07-27 19:02:41.000000000 +0200
+++ poezio-0.10/plugins/gpg/__init__.py 2016-11-16 14:17:06.011128631 +0100
@@ -105,7 +105,7 @@
.. _XEP-0027: http://xmpp.org/extensions/xep-0027.html
"""
-from gpg import gnupg
+import slixmpp.thirdparty.gnupg as gnupg
from slixmpp.xmlstream.stanzabase import JID
from xml.etree import cElementTree as ET

View File

@ -16030,22 +16030,19 @@ EOF
poezio = buildPythonApplication rec {
name = "poezio-${version}";
version = "0.11";
version = "0.12";
disabled = pythonOlder "3.4";
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr mpd2 ];
propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr mpd2 cffi ];
nativeBuildInputs = with pkgs; [ pkgconfig ];
src = pkgs.fetchurl {
url = "http://dev.louiz.org/attachments/download/118/${name}.tar.gz";
sha256 = "07cn3717swarjv47yw8x95bvngz4nvlyyy9m7ck9fhycjgdy82r0";
url = "http://dev.louiz.org/attachments/download/129/${name}.tar.gz";
sha256 = "11n9x82xyjwbqk28lsfnvqwn8qc9flv6w2c64camh6j3148ykpvz";
};
patches = [
../development/python-modules/poezio/fix_gnupg_import.patch
];
checkPhase = ''
py.test
'';