gnu: python-fakeredis: Update to 1.7.0.

* gnu/packages/databases.scm (python-fakeredis): Update to 1.7.0.
This commit is contained in:
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

View file

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