[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: toot: Update to 0.37.0.
From: |
guix-commits |
Subject: |
03/03: gnu: toot: Update to 0.37.0. |
Date: |
Fri, 30 Jun 2023 07:15:43 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 63d555cd0cd7cba3b84fad065cd244bcd286d64c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Jun 30 14:07:51 2023 +0300
gnu: toot: Update to 0.37.0.
* gnu/packages/mastodon.scm (toot): Update to 0.37.0.
[native-inputs]: Add python-psycopg2.
---
gnu/packages/mastodon.scm | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/mastodon.scm b/gnu/packages/mastodon.scm
index 6510d96e2d..feef8c61f9 100644
--- a/gnu/packages/mastodon.scm
+++ b/gnu/packages/mastodon.scm
@@ -27,6 +27,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages check)
+ #:use-module (gnu packages databases)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
@@ -44,29 +45,24 @@
(define-public toot
(package
(name "toot")
- (version "0.36.0")
+ (version "0.37.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "toot" version))
(sha256
- (base32 "1n79jwr3kpnc2xsr9isbgrj5as5i6zbkhxrdpdjfg87qbbjz7xca"))))
+ (base32 "0qx8hyb74r85dxf97k23w0f5rzkrs16mq7h3y37nwp6hl6gia0ci"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
- (add-before 'check 'adjust-test-suite
- (lambda _
- ;; This test contains integration tests meant to run against a
test
- ;; Mastodon instance.
- (delete-file "tests/test_integration.py")))
(replace 'check
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "py.test")))))))
(native-inputs
- (list python-pytest))
+ (list python-psycopg2 python-pytest))
(inputs
(list python-beautifulsoup4 python-requests python-urwid
python-wcwidth))