me
/
guix
Archived
1
0
Fork 0

gnu: python-fakeredis: Update to 1.7.1.

* gnu/packages/databases.scm (python-fakeredis): Update to 1.7.1.
[propagated-inputs]: Add python-aioredis.
master
Maxim Cournoyer 2022-04-18 01:46:37 -04:00
parent eba0784937
commit a64ea1f2d3
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 3 deletions

View File

@ -4001,20 +4001,20 @@ parsing code in hiredis. It primarily speeds up parsing of multi bulk replies."
(define-public python-fakeredis
(package
(name "python-fakeredis")
(version "1.7.0")
(version "1.7.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fakeredis" version))
(sha256
(base32
"0wacd3f558vzsrpdvgvdwy9pp6crxf8hxblz30zbsv1k63j15gf9"))))
"1v68my2v7fg44zwky3k5d52nn1bi0szpgdslghrpa2ifnjhlnb3w"))))
(build-system python-build-system)
(arguments
;; no tests
`(#:tests? #f))
(propagated-inputs
(list python-packaging python-redis python-sortedcontainers))
(list python-aioredis python-packaging python-redis python-sortedcontainers))
(home-page "https://github.com/jamesls/fakeredis")
(synopsis "Fake implementation of redis API for testing purposes")
(description