12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- (define-public python-pycryptodomex
- (package
- (name "python-pycryptodomex")
- (version "3.9.8")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pycryptodomex" version))
- (sha256
- (base32
- "1fajma57cazng4jxfgrhzkysd77l3xnndsxd5caac10z4py2rk28"))))
- (build-system python-build-system)
- (home-page "https://www.pycryptodome.org")
- (synopsis "Cryptographic library for Python")
- (description "Cryptographic library for Python")
- (license #f)))
- (define-public python-salt
- (package
- (name "python-salt")
- (version "3001")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "salt" version))
- (sha256
- (base32
- "0m7immip3r8yffiv7qlcqibszvhlg48qpgcm16skvrn85hdhv9jw"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-distro" ,python-distro)
- ("python-jinja2" ,python-jinja2)
- ("python-markupsafe" ,python-markupsafe)
- ("python-msgpack" ,python-msgpack)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-pyyaml" ,python-pyyaml)
- ("python-pyzmq" ,python-pyzmq)
- ("python-requests" ,python-requests)))
- (home-page "http://saltstack.org")
- (synopsis
- "Portable, distributed, remote execution and configuration management system")
- (description
- "Portable, distributed, remote execution and configuration management system")
- (license #f)))
|