mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
1f6474a819
commit
4005c5da6d
1 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; 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 © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2021 Taiju HIGASHI <higashi@taiju.info>
|
;;; Copyright © 2021 Taiju HIGASHI <higashi@taiju.info>
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,6 +24,7 @@
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
|
#:use-module (guix build-system pyproject)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
@ -37,6 +38,7 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages python-build)
|
||||||
#:use-module (gnu packages python-check)
|
#:use-module (gnu packages python-check)
|
||||||
#:use-module (gnu packages python-crypto)
|
#:use-module (gnu packages python-crypto)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
|
@ -47,14 +49,14 @@
|
||||||
(define-public toot
|
(define-public toot
|
||||||
(package
|
(package
|
||||||
(name "toot")
|
(name "toot")
|
||||||
(version "0.38.1")
|
(version "0.42.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "toot" version))
|
(uri (pypi-uri "toot" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1cn646jzys9vjaw20sxmgzc7zq5a5ma8vabvrw9zpa0yl9wm97my"))))
|
(base32 "1vw3j504dxmq22s40kysps3d09hl7l48cwznwrfr9zqif67i4v3g"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -64,12 +66,17 @@
|
||||||
(add-installed-pythonpath inputs outputs)
|
(add-installed-pythonpath inputs outputs)
|
||||||
(invoke "py.test")))))))
|
(invoke "py.test")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-psycopg2 python-pytest))
|
(list python-psycopg2-binary
|
||||||
|
python-pytest
|
||||||
|
python-pyyaml
|
||||||
|
python-typing-extensions))
|
||||||
(inputs
|
(inputs
|
||||||
(list python-beautifulsoup4
|
(list python-beautifulsoup4
|
||||||
python-tomlkit
|
python-click
|
||||||
python-requests
|
python-requests
|
||||||
|
python-tomlkit
|
||||||
python-urwid
|
python-urwid
|
||||||
|
python-urwidgets
|
||||||
python-wcwidth))
|
python-wcwidth))
|
||||||
(home-page "https://github.com/ihabunek/toot/")
|
(home-page "https://github.com/ihabunek/toot/")
|
||||||
(synopsis "Mastodon CLI client")
|
(synopsis "Mastodon CLI client")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue