guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/36: gnu: Add python-dirsync.


From: julien lepiller
Subject: 10/36: gnu: Add python-dirsync.
Date: Thu, 11 May 2017 16:01:26 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit d15a47911adde0a2f684d30df594d4b0ace8367b
Author: Julien Lepiller <address@hidden>
Date:   Sat Apr 22 13:39:13 2017 +0200

    gnu: Add python-dirsync.
    
    * gnu/packages/python.scm (python-dirsync, python2-dirsync): New variables.
---
 gnu/packages/python.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d6470db..817e058 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14303,3 +14303,27 @@ perform the operations required for synchronizing 
plain text.")
 
 (define-public python2-diff-match-patch
   (package-with-python2 python-diff-match-patch))
+
+(define-public python-dirsync
+  (package
+    (name "python-dirsync")
+    (version "2.2.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "dirsync" version ".zip"))
+        (sha256
+         (base32
+          "1hcdvmkwd5512zbxpin0k7bx5bkgzy3swjx7d0kj1y45af6r75v2"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (propagated-inputs
+     `(("six" ,python-six)))
+    (home-page "https://bitbucket.org/tkhyn/dirsync";)
+    (synopsis "Advanced directory tree synchronisation tool")
+    (description "Advanced directory tree synchronisation tool.")
+    (license license:expat)))
+
+(define-public python2-dirsync
+  (package-with-python2 python-dirsync))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]