From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH v2] gnu: sqlalchemy-utils: Update description to include optional dependencies. Date: Sun, 6 Nov 2016 22:12:53 +0100 Message-ID: <20161106211253.6100-1-dannym@scratchpost.org> References: <20161106210723.4646-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55180) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3UkT-0007h2-Br for guix-devel@gnu.org; Sun, 06 Nov 2016 16:13:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3UkO-0002L4-E4 for guix-devel@gnu.org; Sun, 06 Nov 2016 16:13:05 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:35347) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c3UkO-0002KR-8E for guix-devel@gnu.org; Sun, 06 Nov 2016 16:13:00 -0500 In-Reply-To: <20161106210723.4646-1-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-sqlalchemy-utils)[description]: Include optional dependencies. --- gnu/packages/python.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6b2c9e9..5b5287e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4010,7 +4010,19 @@ both of which are installed automatically if you install this library.") (synopsis "Various utility functions for SQLAlchemy") (description "SQLAlchemy-utils provides various utility functions and custom data types -for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.") +for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python. + +You might also want to install the following optional dependencies: +@enumerate +@item @code{python-passlib} +@item @code{python-babel} +@item @code{python-cryptography} +@item @code{python-pytz} +@item @code{python-psycopg2} +@item @code{python-furl} +@item @code{python-flask-babel} +@end enumerate +") (properties `((python2-variant . ,(delay python2-sqlalchemy-utils)))) (license license:bsd-3)))