me
/
guix
Archived
1
0
Fork 0

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>
master
David Larsson 2021-10-26 19:39:37 +02:00 committed by Tobias Geerinckx-Rice
parent 65234d0d3f
commit f19e11e1da
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 12 additions and 0 deletions

View File

@ -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))