diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-30 23:33:46 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-01 00:36:56 +0100 |
| commit | 3549922107f8b680322ee4002ca39933604a232b (patch) | |
| tree | 8a803d47824ac25bd632dccc42a77ad5ff6454eb /gnu | |
| parent | a2de5f9480e911ba912669c56094f2006b03b42f (diff) | |
gnu: Add python-smart-open-6.
* gnu/packages/python-web.scm (python-smart-open-6): New variable.
Change-Id: I937ab8f574ddb9559f3863e6a988a77b0a1dd01f
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 00445772474..308672921b8 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10775,6 +10775,25 @@ library for Python.") GCS, Azure Blob Storage, gzip, bz2, etc.)") (license license:expat))) +(define-public python-smart-open-6 + (package + (inherit python-smart-open) + (name "python-smart-open") + (version "6.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/piskvorky/smart_open") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vpx37b6lsb6iwi59776ywjrqk1czv8arlhaf9073lrsbilqvj3x")))) + (arguments + (list + ;; XXX: Tests need some older native inputs, disable for now. + #:tests? #f)))) + (define-public python-w3lib (package (name "python-w3lib") |
