diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2024-06-17 16:49:14 +1000 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-06-17 17:15:09 -0500 |
commit | 2a499ada726dd2a337d1d85641a2ebacef69336f (patch) | |
tree | bf843445ec5747449669c362b00774e05d19c746 | |
parent | 2e819f7f0eba26e56e705a9207d0d912d9add868 (diff) | |
download | guix-2a499ada726dd2a337d1d85641a2ebacef69336f.tar.gz guix-2a499ada726dd2a337d1d85641a2ebacef69336f.zip |
gnu: Add python-wtforms-sqlalchemy.
* gnu/packages/python-web.scm (python-wtforms-sqlalchemy): New variable.
Change-Id: Ie94c07d055ec42f08db3a18894e7f6184006764f
Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r-- | gnu/packages/python-web.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index fae4b8bf0f..1363e6ccdf 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5288,6 +5288,28 @@ for Python web development. It is very similar to the web form API available in Django, but is a standalone package.") (license license:bsd-3))) +(define-public python-wtforms-sqlalchemy + (package + (name "python-wtforms-sqlalchemy") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "WTForms-SQLAlchemy" version)) + (sha256 + (base32 "1nx4x0ifanlbrzh3f9ns8ihnchlkzf54ilvqmgcgcz2j72vm43rp")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest)) + (propagated-inputs (list python-sqlalchemy python-wtforms)) + (home-page "https://github.com/wtforms/wtforms-sqlalchemy/") + (synopsis "SQLAlchemy tools for WTForms") + (description + "WTForms-SQLAlchemy is a fork of the @code{wtforms.ext.sqlalchemy} +package from WTForms. The package has been renamed to +@code{wtforms_sqlalchemy} but otherwise should function the same as +@code{wtforms.ext.sqlalchemy} did.") + (license license:bsd-3))) + (define-public python-paste (package (name "python-paste") |