diff options
-rw-r--r-- | gn/packages/python.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 1e82e11..b1cb6ab 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -12,6 +12,7 @@ #:use-module (gnu packages pcre) #:use-module (gnu packages python) #:use-module (gnu packages python-build) + #:use-module (gnu packages python-check) #:use-module (gnu packages python-compression) #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-science) @@ -1641,3 +1642,26 @@ sorted order.") (synopsis "Python IPFS HTTP CLIENT library") (description "Python IPFS HTTP CLIENT library") (license license:expat))) + +;; TODO: Upstream +(define-public python-sqlalchemy-stubs + (package + (name "python-sqlalchemy-stubs") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sqlalchemy-stubs" version)) + (sha256 + (base32 + "1bppjmv7v7m0q8gwg791pgxbx4ay7mna0zq204pn9vw28kfxcrf6")))) + (build-system python-build-system) + (propagated-inputs + `(("python-mypy" ,python-mypy) + ("python-typing-extensions" + ,python-typing-extensions))) + (home-page + "https://github.com/dropbox/sqlalchemy-stubs") + (synopsis "SQLAlchemy stubs and mypy plugin") + (description "SQLAlchemy stubs and mypy plugin") + (license license:expat))) |