[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: Add Fabric.
From: |
Ludovic Courtès |
Subject: |
04/05: gnu: Add Fabric. |
Date: |
Tue, 11 Apr 2017 12:03:43 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit b611f9c28239b43420b9a8161422a10bcfe186bf
Author: Ben Sturmfels <address@hidden>
Date: Tue Apr 11 17:56:52 2017 +0200
gnu: Add Fabric.
* gnu/packages/admin.scm (fabric): New variable.
---
gnu/packages/admin.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 327dd36..bff480b 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -15,6 +15,7 @@
;;; Coypright © 2016, 2017 ng0 <address@hidden>
;;; Coypright © 2016 Tobias Geerinckx-Rice <address@hidden>
;;; Coypright © 2016 John Darrington <address@hidden>
+;;; Coypright © 2017 Ben Sturmfels <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2049,3 +2050,36 @@ low-level tools and tests specifically for development
and testing of the
Intel DRM Driver.")
(license license:expat)))
+(define-public fabric
+ (package
+ (name "fabric")
+ (version "1.13.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "Fabric" version))
+ (sha256
+ (base32
+ "1z17hw0yiqp1blq217zxkg2jzkv8qd79saqhscgsw14mwlcqpwd0"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ;XXX: Tests attempt to download Python "fudge" package.
+ #:python ,python-2)) ;Python 2 only
+ (propagated-inputs
+ ;; Required upgrading python-paramiko 1.17.4 to fix an incompatibility
+ ;; between python-paramiko and newer python-pycrypto. Without this, the
+ ;; `fab` command fails with "ValueError: CTR mode needs counter
+ ;; parameter, not IV". See:
+ ;; https://github.com/paramiko/paramiko/pull/714#issuecomment-281191548.
+ `(("python2-paramiko" ,python2-paramiko)))
+ (home-page "http://fabfile.org")
+ (synopsis "Simple Pythonic remote execution and deployment tool")
+ (description
+ "Fabric is designed to upload files and run shell commands on a number of
+servers in parallel or serially. These commands are grouped in tasks (which
+are regular Python functions) and specified in a @dfn{fabfile}.
+
+It is similar to Capistrano, except it's implemented in Python and doesn't
+expect you to be deploying Rails applications. Fabric is a simple, Pythonic
+tool for remote execution and deployment.")
+ (license license:bsd-2)))