From 1ba3b2c6c7aa506ae2ee7c0534ea185894d841a1 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 6 Nov 2025 11:38:28 +0000 Subject: [PATCH] gnu: python-txredisapi: Sort variable. * gnu/packages/python-xyz.scm (python-txredisapi): Sort variable alphabetically. Change-Id: I7051c0efab8f21dd173f074b5ab039d4ee8c10ba --- gnu/packages/python-xyz.scm | 78 ++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 52b7a2eda323503804cd15ee67034ac935500efb..545c12546c7849974e9428ca435d9f4eb9a061e7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13250,45 +13250,6 @@ using the PLY parsing library. It parses C code into an AST and can serve as a front-end for C compilers or analysis tools.") (license license:bsd-3))) -(define-public python-txredisapi - (let ((commit "d2259a379695284f4a84d7821ed47e1db409501d") - ;; The latest version is 1.4.11, but it contains a bug: - ;; https://github.com/IlyaSkriblovsky/txredisapi/pull/157. That bug is - ;; patched in commit d2259a3. - (revision "0")) - (package - (name "python-txredisapi") - (version (git-version "1.4.11" revision commit)) - (source - (origin - (method git-fetch) - ;; The source distribution on PyPi is missing test files: - ;; https://github.com/IlyaSkriblovsky/txredisapi/pull/155 - (uri (git-reference - (url "https://github.com/IlyaSkriblovsky/txredisapi") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v9r01cn5zb0jjb1h394y667345yp17485bl5d4k80019b34dm98")))) - (build-system pyproject-build-system) - (arguments - (list #:test-backend #~'custom - #:test-flags #~(list "-m" "twisted.trial" "tests") - #:phases - #~(modify-phases %standard-phases - ;; The tests require a running Redis server. - (add-before 'check 'start-redis - (lambda _ - (invoke "redis-server" "--daemonize" "yes")))))) - (propagated-inputs (list python-twisted)) - (native-inputs (list python-mock python-setuptools redis)) - (home-page "https://github.com/IlyaSkriblovsky/txredisapi") - (synopsis "Non-blocking Redis client for Python") - (description "txredisapi is a non-blocking client driver for the Redis -database, written in Python. It uses Twisted for asynchronous communication -with Redis.") - (license license:asl2.0)))) - (define-public python-pywavelets (package (name "python-pywavelets") @@ -38524,6 +38485,45 @@ their files and supports any packaging format (including wheels).") focus on event-based network programming and multiprotocol integration.") (license license:expat))) +(define-public python-txredisapi + (let ((commit "d2259a379695284f4a84d7821ed47e1db409501d") + ;; The latest version is 1.4.11, but it contains a bug: + ;; https://github.com/IlyaSkriblovsky/txredisapi/pull/157. That bug is + ;; patched in commit d2259a3. + (revision "0")) + (package + (name "python-txredisapi") + (version (git-version "1.4.11" revision commit)) + (source + (origin + (method git-fetch) + ;; The source distribution on PyPi is missing test files: + ;; https://github.com/IlyaSkriblovsky/txredisapi/pull/155 + (uri (git-reference + (url "https://github.com/IlyaSkriblovsky/txredisapi") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v9r01cn5zb0jjb1h394y667345yp17485bl5d4k80019b34dm98")))) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'custom + #:test-flags #~(list "-m" "twisted.trial" "tests") + #:phases + #~(modify-phases %standard-phases + ;; The tests require a running Redis server. + (add-before 'check 'start-redis + (lambda _ + (invoke "redis-server" "--daemonize" "yes")))))) + (propagated-inputs (list python-twisted)) + (native-inputs (list python-mock python-setuptools redis)) + (home-page "https://github.com/IlyaSkriblovsky/txredisapi") + (synopsis "Non-blocking Redis client for Python") + (description "txredisapi is a non-blocking client driver for the Redis +database, written in Python. It uses Twisted for asynchronous communication +with Redis.") + (license license:asl2.0)))) + (define-public python-typeapi (package (name "python-typeapi")