1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- (define-public python-importlib-resources
- (package
- (name "python-importlib-resources")
- (version "3.0.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "importlib-resources" version))
- (sha256
- (base32
- "1hq626mx5jl9zfl0wdrjkxsnh8qd98fqv322n68b9251xjk4bxqr"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-contextlib2" ,python-contextlib2)
- ("python-pathlib2" ,python-pathlib2)
- ("python-singledispatch" ,python-singledispatch)
- ("python-typing" ,python-typing)
- ("python-zipp" ,python-zipp)))
- (home-page
- "http://importlib-resources.readthedocs.io/")
- (synopsis "Read resources from Python packages")
- (description
- "Read resources from Python packages")
- (license #f)))
- (define-public python-iredis
- (package
- (name "python-iredis")
- (version "1.8.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "iredis" version))
- (sha256
- (base32
- "1jmzxvsi8iazcr7fkpcp7v16zc6m51gid8fdigxigv01i8315fxw"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-click" ,python-click)
- ("python-configobj" ,python-configobj)
- ("python-importlib-resources"
- ,python-importlib-resources)
- ("python-mistune" ,python-mistune)
- ("python-pendulum" ,python-pendulum)
- ("python-prompt-toolkit" ,python-prompt-toolkit)
- ("python-pygments" ,python-pygments)
- ("python-redis" ,python-redis)
- ("python-wcwidth" ,python-wcwidth)))
- (home-page "https://github.com/laixintao/iredis")
- (synopsis
- "Terminal client for Redis with auto-completion and syntax highlighting.")
- (description
- "Terminal client for Redis with auto-completion and syntax highlighting.")
- (license #f)))
|