me
/
guix
Archived
1
0
Fork 0

gnu: python-fakeredis: Update to 1.7.0.

* gnu/packages/databases.scm (python-fakeredis): Update to 1.7.0.
master
Marius Bakke 2021-12-01 00:43:46 +01:00
parent 0b6f4be0fa
commit acbc01940b
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 6 deletions

View File

@ -3566,20 +3566,22 @@ parsing code in hiredis. It primarily speeds up parsing of multi bulk replies."
(define-public python-fakeredis
(package
(name "python-fakeredis")
(version "1.2.1")
(version "1.7.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fakeredis" version))
(sha256
(base32
"1s12mn4q4hz7402139khn9fx56kibj7nn0d6w81hn0zs07b90wpc"))))
"0wacd3f558vzsrpdvgvdwy9pp6crxf8hxblz30zbsv1k63j15gf9"))))
(build-system python-build-system)
(arguments
;; no tests
`(#:tests? #f))
(propagated-inputs
`(("python-sortedcontainers" ,python-sortedcontainers)))
`(("python-packaging" ,python-packaging)
("python-redis" ,python-redis)
("python-sortedcontainers" ,python-sortedcontainers)))
(home-page "https://github.com/jamesls/fakeredis")
(synopsis "Fake implementation of redis API for testing purposes")
(description
@ -3592,9 +3594,6 @@ talk to an external server such as redis. This module can be used as a
reasonable substitute.")
(license license:bsd-3)))
(define-public python2-fakeredis
(package-with-python2 python-fakeredis))
(define-public python-redis
(package
(name "python-redis")