guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 998a2c22be3549a128ab3a42588b98870185ca03
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Sun Jul 12 21:00:43 2026 +0200

    gnu: python-alchemy-mock: Fix build.
    
    * gnu/packages/databases.scm (python-alchemy-mock): Fix build.
    [propagated-inputs]: Add python-six.
    
    Relates-to: guix/guix!9885
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/databases.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 01a2df8c47..be30069ca8 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4670,6 +4670,8 @@ You might also want to install the following optional 
dependencies:
 ")
     (license license:bsd-3)))
 
+;; python-alchemy-mock is abandoned, last commit in 2019, no maintained fork.
+;; Perhaps deprecate and remove with the python-six cleanup.
 (define-public python-alchemy-mock
   (package
     (name "python-alchemy-mock")
@@ -4696,7 +4698,7 @@ You might also want to install the following optional 
dependencies:
       #~(list "--doctest-modules" "alchemy_mock")))
     (native-inputs (list python-mock python-pytest python-setuptools
                          python-wheel))
-    (propagated-inputs (list python-sqlalchemy))
+    (propagated-inputs (list python-sqlalchemy python-six))
     (synopsis "Mock helpers for SQLAlchemy")
     (description
      "This package provides mock helpers for SQLAlchemy that makes it easy

Reply via email to