diff options
author | Arun Isaac | 2024-03-11 19:05:23 +0000 |
---|---|---|
committer | Arun Isaac | 2024-03-11 19:05:23 +0000 |
commit | 7a62aae3fda55385dbc1e8f2dc826c8e4ca14be6 (patch) | |
tree | 5e60074a1b44ca4f62501cdbf469ffb3a32749ad /gn | |
parent | e8e9acbbc24ee29781df50832f3b979106c41415 (diff) | |
download | guix-bioinformatics-7a62aae3fda55385dbc1e8f2dc826c8e4ca14be6.tar.gz |
gn: Add python-typing-extensions-4.10.
* gn/packages/python.scm (python-typing-extensions-4.10): New
variable.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/python.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 2e0fab7..11f2762 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1860,3 +1860,14 @@ complete wrapping of the HDF5 API, while the high-level component supports access to HDF5 files, datasets and groups using established Python and NumPy concepts.") (license license:bsd-3))) + +(define-public python-typing-extensions-4.10 + (package + (inherit python-typing-extensions) + (version "4.10.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "typing_extensions" version)) + (sha256 + (base32 + "1jxkj4pni8pdyrn79sq441lsp40xzw363n0qvfc6zfcgkv4dgaxh")))))) |