From e5d2f0bd4bd330328e75ea39794a1b1f8b0929fb Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 25 Sep 2025 13:25:32 +0300 Subject: [PATCH] gnu: toot: Update to 0.50.1. * gnu/packages/fediverse.scm (toot): Update to 0.50.1. [arguments]: Remove field. [inputs]: Remove python-urwid and python-urwidgets; add python-dateutil and python-urwid-3. [native-inputs]: Remove python-psycopg2-binary, python-pyyaml, and python-typing-extensions; add python-pillow and python-setuptools-scm. Change-Id: I06a39646b1ffac130a42a1d1d10bbdcfc625ab94 --- gnu/packages/fediverse.scm | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/gnu/packages/fediverse.scm b/gnu/packages/fediverse.scm index 167742e5cf4..ce91efa9b4d 100644 --- a/gnu/packages/fediverse.scm +++ b/gnu/packages/fediverse.scm @@ -116,36 +116,27 @@ the federation of interconnected video hosting services.") (define-public toot (package (name "toot") - (version "0.42.0") + (version "0.50.1") (source (origin (method url-fetch) (uri (pypi-uri "toot" version)) (sha256 - (base32 "1vw3j504dxmq22s40kysps3d09hl7l48cwznwrfr9zqif67i4v3g")))) + (base32 "1ng0aq7nlh3agdxri6izxzky4m93mm6ki71l0bcz81jhk31ya63i")))) (build-system pyproject-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? inputs outputs #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "py.test"))))))) (native-inputs - (list python-psycopg2-binary + (list python-pillow python-pytest - python-pyyaml python-setuptools - python-typing-extensions + python-setuptools-scm python-wheel)) (inputs (list python-beautifulsoup4 python-click + python-dateutil python-requests python-tomlkit - python-urwid - python-urwidgets + python-urwid-3 python-wcwidth)) (home-page "https://github.com/ihabunek/toot/") (synopsis "Mastodon CLI client")