summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-07-12 21:00:43 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:23 +0100
commitc4b7b88c2fb8beec61aa9f3b128a93802fed0f4c (patch)
treeea1c428d6e1713a3ed667004eafc658da45e006b /gnu/packages
parent3a25599b7b9ef32b597803b3688adc01766870a9 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/databases.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 3a6eb6bf75f..60ade5d3085 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:
4670") 4670")
4671 (license license:bsd-3))) 4671 (license license:bsd-3)))
4672 4672
4673;; python-alchemy-mock is abandoned, last commit in 2019, no maintained fork.
4674;; Perhaps deprecate and remove with the python-six cleanup.
4673(define-public python-alchemy-mock 4675(define-public python-alchemy-mock
4674 (package 4676 (package
4675 (name "python-alchemy-mock") 4677 (name "python-alchemy-mock")
@@ -4696,7 +4698,7 @@ You might also want to install the following optional dependencies:
4696 #~(list "--doctest-modules" "alchemy_mock"))) 4698 #~(list "--doctest-modules" "alchemy_mock")))
4697 (native-inputs (list python-mock python-pytest python-setuptools 4699 (native-inputs (list python-mock python-pytest python-setuptools
4698 python-wheel)) 4700 python-wheel))
4699 (propagated-inputs (list python-sqlalchemy)) 4701 (propagated-inputs (list python-sqlalchemy python-six))
4700 (synopsis "Mock helpers for SQLAlchemy") 4702 (synopsis "Mock helpers for SQLAlchemy")
4701 (description 4703 (description
4702 "This package provides mock helpers for SQLAlchemy that makes it easy 4704 "This package provides mock helpers for SQLAlchemy that makes it easy