python-salt.scm 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. (define-public python-pycryptodomex
  2. (package
  3. (name "python-pycryptodomex")
  4. (version "3.9.8")
  5. (source
  6. (origin
  7. (method url-fetch)
  8. (uri (pypi-uri "pycryptodomex" version))
  9. (sha256
  10. (base32
  11. "1fajma57cazng4jxfgrhzkysd77l3xnndsxd5caac10z4py2rk28"))))
  12. (build-system python-build-system)
  13. (home-page "https://www.pycryptodome.org")
  14. (synopsis "Cryptographic library for Python")
  15. (description "Cryptographic library for Python")
  16. (license #f)))
  17. (define-public python-salt
  18. (package
  19. (name "python-salt")
  20. (version "3001")
  21. (source
  22. (origin
  23. (method url-fetch)
  24. (uri (pypi-uri "salt" version))
  25. (sha256
  26. (base32
  27. "0m7immip3r8yffiv7qlcqibszvhlg48qpgcm16skvrn85hdhv9jw"))))
  28. (build-system python-build-system)
  29. (propagated-inputs
  30. `(("python-distro" ,python-distro)
  31. ("python-jinja2" ,python-jinja2)
  32. ("python-markupsafe" ,python-markupsafe)
  33. ("python-msgpack" ,python-msgpack)
  34. ("python-pycryptodomex" ,python-pycryptodomex)
  35. ("python-pyyaml" ,python-pyyaml)
  36. ("python-pyzmq" ,python-pyzmq)
  37. ("python-requests" ,python-requests)))
  38. (home-page "http://saltstack.org")
  39. (synopsis
  40. "Portable, distributed, remote execution and configuration management system")
  41. (description
  42. "Portable, distributed, remote execution and configuration management system")
  43. (license #f)))