Advertisement
Guest User

Untitled

a guest
Aug 9th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.65 KB | None | 0 0
  1. (use-modules (guix packages)(guix download)(guix build-system python)(guix licenses) (gnu packages ssh)(gnu packages python))
  2. (define-public python-clustershell
  3.   (package
  4.    (name "python-clustershell")
  5.    (version "1.8")
  6.    (source
  7.     (origin
  8.      (method url-fetch)
  9.      (uri "https://github.com/cea-hpc/clustershell/archive/v1.8.tar.gz")
  10.      (sha256
  11.       (base32
  12.        "1qyf6zp5ikk8rk7zvx5ssbgr9si2bqv3a3415590kd07s7i16nmd"))))
  13.    (build-system python-build-system)
  14.    (inputs
  15.     `(("openssh" ,openssh)))
  16.    (propagated-inputs `(("python-pyyaml" ,python-pyyaml)))
  17.    (home-page "")
  18.    (synopsis "")
  19.    (description
  20.     "")
  21.    (license "")))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement