python-iredis.scm 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. (define-public python-importlib-resources
  2. (package
  3. (name "python-importlib-resources")
  4. (version "3.0.0")
  5. (source
  6. (origin
  7. (method url-fetch)
  8. (uri (pypi-uri "importlib-resources" version))
  9. (sha256
  10. (base32
  11. "1hq626mx5jl9zfl0wdrjkxsnh8qd98fqv322n68b9251xjk4bxqr"))))
  12. (build-system python-build-system)
  13. (propagated-inputs
  14. `(("python-contextlib2" ,python-contextlib2)
  15. ("python-pathlib2" ,python-pathlib2)
  16. ("python-singledispatch" ,python-singledispatch)
  17. ("python-typing" ,python-typing)
  18. ("python-zipp" ,python-zipp)))
  19. (home-page
  20. "http://importlib-resources.readthedocs.io/")
  21. (synopsis "Read resources from Python packages")
  22. (description
  23. "Read resources from Python packages")
  24. (license #f)))
  25. (define-public python-iredis
  26. (package
  27. (name "python-iredis")
  28. (version "1.8.0")
  29. (source
  30. (origin
  31. (method url-fetch)
  32. (uri (pypi-uri "iredis" version))
  33. (sha256
  34. (base32
  35. "1jmzxvsi8iazcr7fkpcp7v16zc6m51gid8fdigxigv01i8315fxw"))))
  36. (build-system python-build-system)
  37. (propagated-inputs
  38. `(("python-click" ,python-click)
  39. ("python-configobj" ,python-configobj)
  40. ("python-importlib-resources"
  41. ,python-importlib-resources)
  42. ("python-mistune" ,python-mistune)
  43. ("python-pendulum" ,python-pendulum)
  44. ("python-prompt-toolkit" ,python-prompt-toolkit)
  45. ("python-pygments" ,python-pygments)
  46. ("python-redis" ,python-redis)
  47. ("python-wcwidth" ,python-wcwidth)))
  48. (home-page "https://github.com/laixintao/iredis")
  49. (synopsis
  50. "Terminal client for Redis with auto-completion and syntax highlighting.")
  51. (description
  52. "Terminal client for Redis with auto-completion and syntax highlighting.")
  53. (license #f)))