diff options
author | Marius Bakke <[email protected]> | 2019-12-05 17:57:35 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2019-12-05 17:57:35 +0100 |
commit | 9d5aa009062a49bd035ae33e37f6562526e7d38c (patch) | |
tree | 4ff2302863a5cf9f3cf604240ea793152156f532 /gnu/packages/mastodon.scm | |
parent | 60bd56c6d8368c23dcd97b26501771c82316fc8c (diff) | |
parent | 2c2fc24b899d3286774f60405888718d98211213 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/mastodon.scm')
-rw-r--r-- | gnu/packages/mastodon.scm | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/gnu/packages/mastodon.scm b/gnu/packages/mastodon.scm index cd12f5a7fd..54d4c539ec 100644 --- a/gnu/packages/mastodon.scm +++ b/gnu/packages/mastodon.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Efraim Flashner <[email protected]> +;;; Copyright © 2019 Tobias Geerinckx-Rice <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,40 +24,33 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages check) #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) -) + #:use-module (gnu packages python-xyz)) (define-public toot (package (name "toot") - (version "0.21.0") + (version "0.24.0") (source (origin (method url-fetch) (uri (pypi-uri "toot" version)) (sha256 - (base32 - "1dqv5jckaw3r7dnfns3iygwbfnf27x513qrw2rryzl5y79xrzs1x")))) + (base32 "0w83b6ydaggrand9285wfrjrm1qry8fjl4as0iihma630ky6y2w3")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (delete 'check) - ;; see https://github.com/ihabunek/toot/issues/91 - (add-after 'unpack 'dont-install-Makefile - (lambda _ - (substitute* "setup.py" - (("data_files.*" all) "")) - #t)) (add-after 'install 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "py.test")))))) (native-inputs `(("python-pytest" ,python-pytest))) - (propagated-inputs + (inputs `(("python-beautifulsoup4" ,python-beautifulsoup4) ("python-requests" ,python-requests) + ("python-urwid" ,python-urwid) ("python-wcwidth" ,python-wcwidth))) (home-page "https://github.com/ihabunek/toot/") (synopsis "Mastodon CLI client") |