diff options
author | David Larsson <david.larsson@selfhosted.xyz> | 2021-10-26 19:39:37 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 15:28:26 +0100 |
commit | f19e11e1da183dddb8921c7778bca5a12e42daf8 (patch) | |
tree | d5c973bd9ffd4d1dc71dad779dd7a215b12bcc09 /gnu | |
parent | 65234d0d3f384b1f5e24921168827d2628b1cd53 (diff) | |
download | guix-f19e11e1da183dddb8921c7778bca5a12e42daf8.tar.gz |
gnu: Add python-sqlalchemy@1.3.
* gnu/packages/databases.scm (python-sqlalchemy-1.3): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 0da6c2d1be..7fcdacce7c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3006,6 +3006,18 @@ designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language.") (license license:x11))) +(define-public python-sqlalchemy-1.3 + (package + (inherit python-sqlalchemy) + (version "1.3.20") + (source + (origin + (method url-fetch) + (uri (pypi-uri "SQLAlchemy" version)) + (sha256 + (base32 "18b9am7bsqc4nj3d2h5r93i002apczxfvpfpcqbd6f0385zmrwnj")))) + (propagated-inputs '()))) + (define-public python2-sqlalchemy (package-with-python2 python-sqlalchemy)) |