poezio: 0.16 -> 0.18 (#524894)

This commit is contained in:
Fabian Affolter
2026-06-10 07:26:51 +00:00
committed by GitHub
2 changed files with 12 additions and 9 deletions
+2 -2
View File
@@ -8,14 +8,14 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "poezio";
version = "0.16";
version = "0.18";
pyproject = true;
src = fetchFromCodeberg {
owner = "poezio";
repo = "poezio";
rev = "v${finalAttrs.version}";
hash = "sha256-bpudgf9oZ+7w7izAuWYKFVO9CIHraHaGvRKLDuSIF7c=";
hash = "sha256-/QGxJrWK8Sl+t8SBsU8ZAMU/5pR+daf7Q43jczzENmw=";
};
nativeBuildInputs = [ pkg-config ];
@@ -20,16 +20,16 @@
setuptools-scm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "slixmpp";
version = "1.13.2";
version = "1.16.0";
pyproject = true;
src = fetchFromCodeberg {
owner = "poezio";
repo = "slixmpp";
tag = "slix-${version}";
hash = "sha256-hjM1OIFYpHV5SSN32858pyuwOvaAA0tFZWCZI+5n9u4=";
tag = "slix-${finalAttrs.version}";
hash = "sha256-d0laQWaqZUoviF7NM/egENQ3ArQE12ER0TzfPBcnc7Q=";
};
patches = [
@@ -71,7 +71,10 @@ buildPythonPackage rec {
safer-xml-parsing = [ defusedxml ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies;
nativeCheckInputs = [
pytestCheckHook
]
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
preCheck = ''
# don't test against pure python version in the source tree
@@ -90,8 +93,8 @@ buildPythonPackage rec {
meta = {
description = "Python library for XMPP";
homepage = "https://slixmpp.readthedocs.io/";
changelog = "https://codeberg.org/poezio/slixmpp/releases/tag/${src.tag}";
changelog = "https://codeberg.org/poezio/slixmpp/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})