gajim: 1.5.4 → 1.6.0

pythonPackages.nbxmpp: 3.2.5 → 4.0.0
This commit is contained in:
Vincent Laporte 2023-01-08 09:01:59 +01:00
parent e9857feb1d
commit ef66cb6139
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 7 additions and 7 deletions

View File

@ -22,11 +22,11 @@
python3.pkgs.buildPythonApplication rec {
pname = "gajim";
version = "1.5.4";
version = "1.6.0";
src = fetchurl {
url = "https://gajim.org/downloads/${lib.versions.majorMinor version}/gajim-${version}.tar.gz";
sha256 = "sha256-uIzOKiCbHiSVRlXcpE0B/+Ats3cfw4u7eA+KyPriwhk=";
hash = "sha256-gHRB3thDH+CKRXTgrD37e2zf0rVDIVl4Zhxf5lsLjyc=";
};
buildInputs = [

View File

@ -4,7 +4,7 @@
, fetchFromGitLab
, gobject-introspection
, idna
, libsoup
, libsoup_3
, precis-i18n
, pygobject3
, pyopenssl
@ -13,16 +13,16 @@
buildPythonPackage rec {
pname = "nbxmpp";
version = "3.2.5";
version = "4.0.0";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.10";
src = fetchFromGitLab {
domain = "dev.gajim.org";
owner = "gajim";
repo = "python-nbxmpp";
rev = version;
sha256 = "sha256-HIPvZu8Zj69k1FCbkrlSeGtur5cT0TNIYfdXcRbYLwQ=";
hash = "sha256-6PYJGlNOZMwHMXwf05IWekJ+haMfg+ooH5On+aYOWSI=";
};
nativeBuildInputs = [
@ -37,7 +37,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
gobject-introspection
idna
libsoup
libsoup_3
pygobject3
pyopenssl
];