diff options
author | jgart <jgart@dismail.de> | 2021-11-19 06:19:29 -0500 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2021-11-19 21:32:04 +0530 |
commit | 54cc341e24a5621e44e775a28f400a5e5e2b9166 (patch) | |
tree | 52949f128c9e0d35e9dd61ad41ba7e007c4b5663 /gnu | |
parent | 6460345725a5021c8740f77e68724e5bb880d6a4 (diff) | |
download | guix-54cc341e24a5621e44e775a28f400a5e5e2b9166.tar.gz guix-54cc341e24a5621e44e775a28f400a5e5e2b9166.zip |
gnu: mycli: Update to 1.24.1.
* gnu/packages/databases.scm (mycli): Update to 1.24.1.
[propagated-inputs]: Add python-pyaes and python-pyperclip.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index de161e1864..230f7c2490 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -53,6 +53,7 @@ ;;; Copyright © 2021 Simon Streit <simon@netpanic.org> ;;; Copyright © 2021 Alexandre Hannud Abdo <abdo@member.fsf.org> ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com> +;;; Copyright © 2021 jgart <jgart@dismail.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -145,6 +146,7 @@ #:use-module (gnu packages tls) #:use-module (gnu packages valgrind) #:use-module (gnu packages web) + #:use-module (gnu packages xdisorg) #:use-module (gnu packages xml) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) @@ -618,13 +620,13 @@ replacement for the code@{python-memcached} library.") (define-public mycli (package (name "mycli") - (version "1.22.2") + (version "1.24.1") (source (origin (method url-fetch) (uri (pypi-uri "mycli" version)) (sha256 - (base32 "1lq2x95553vdmhw13cxcgsd2g2i32izhsb7hxd4m1iwf9b3msbpv")))) + (base32 "0rij9nw20zhqr7cqnkm8daw8b1wdc9zb6ny1ji9qz5557nz9i3bl")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; tests expect a running MySQL @@ -634,8 +636,10 @@ replacement for the code@{python-memcached} library.") ("python-configobj" ,python-configobj) ("python-cryptography" ,python-cryptography) ("python-prompt-toolkit" ,python-prompt-toolkit) + ("python-pyaes" ,python-pyaes) ("python-pygments" ,python-pygments) ("python-pymysql" ,python-pymysql) + ("python-pyperclip" ,python-pyperclip) ("python-sqlparse" ,python-sqlparse))) (home-page "http://mycli.net") (synopsis |