[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: toot: Update to 0.42.0.
From: |
guix-commits |
Subject: |
07/09: gnu: toot: Update to 0.42.0. |
Date: |
Thu, 21 Mar 2024 08:49:28 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 4005c5da6d7ea8e7d2ce57950801faeb684430cd
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 21 13:57:33 2024 +0200
gnu: toot: Update to 0.42.0.
* gnu/packages/mastodon.scm (toot): Update to 0.42.0.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pyyaml, python-typing-extensions.
[inputs]: Add python-click, python-urwidgets.
Change-Id: I085531e63e6f811319715cfddfad9f17c877897d
---
gnu/packages/mastodon.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/mastodon.scm b/gnu/packages/mastodon.scm
index cbeccdb402..7f7afec90d 100644
--- a/gnu/packages/mastodon.scm
+++ b/gnu/packages/mastodon.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2019-2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Taiju HIGASHI <higashi@taiju.info>
;;;
@@ -24,6 +24,7 @@
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix build-system meson)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
@@ -37,6 +38,7 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
@@ -47,14 +49,14 @@
(define-public toot
(package
(name "toot")
- (version "0.38.1")
+ (version "0.42.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "toot" version))
(sha256
- (base32 "1cn646jzys9vjaw20sxmgzc7zq5a5ma8vabvrw9zpa0yl9wm97my"))))
- (build-system python-build-system)
+ (base32 "1vw3j504dxmq22s40kysps3d09hl7l48cwznwrfr9zqif67i4v3g"))))
+ (build-system pyproject-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -64,12 +66,17 @@
(add-installed-pythonpath inputs outputs)
(invoke "py.test")))))))
(native-inputs
- (list python-psycopg2 python-pytest))
+ (list python-psycopg2-binary
+ python-pytest
+ python-pyyaml
+ python-typing-extensions))
(inputs
(list python-beautifulsoup4
- python-tomlkit
+ python-click
python-requests
+ python-tomlkit
python-urwid
+ python-urwidgets
python-wcwidth))
(home-page "https://github.com/ihabunek/toot/")
(synopsis "Mastodon CLI client")
- branch master updated (69951a61a1 -> ec0e5e9369), guix-commits, 2024/03/21
- 01/09: gnu: wgetpaste: Update to 2.34., guix-commits, 2024/03/21
- 05/09: gnu: libportal: Update to 0.7.1., guix-commits, 2024/03/21
- 06/09: gnu: Add python-urwidgets., guix-commits, 2024/03/21
- 07/09: gnu: toot: Update to 0.42.0.,
guix-commits <=
- 08/09: gnu: global: Update to 6.6.12., guix-commits, 2024/03/21
- 09/09: gnu: universal-ctags: Update to 6.1.20240317.0., guix-commits, 2024/03/21
- 03/09: gnu: khard: Update to 0.19.1., guix-commits, 2024/03/21
- 02/09: gnu: khal: Update to 0.11.3., guix-commits, 2024/03/21
- 04/09: gnu: xdg-desktop-portal-wlr: Update to 0.7.1., guix-commits, 2024/03/21