guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add python-incremental.


From: Ricardo Wurmus
Subject: 06/08: gnu: Add python-incremental.
Date: Tue, 10 Oct 2017 17:09:54 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 0cd83b4e000df50f93f00b3b77691852afe57b7f
Author: Troy Sankey <address@hidden>
Date:   Mon Feb 20 01:37:40 2017 -0500

    gnu: Add python-incremental.
    
    * gnu/packages/python.scm (python-incremental, python2-incremental): New
    variables.
    
    Co-authored-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/python.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index c9e52c9..1414979 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14228,6 +14228,27 @@ Python.  It is based on Parsing Expression Grammars, 
PEG.  With pyPEG you can
 parse many formal languages.")
     (license license:gpl2)))
 
+(define-public python-incremental
+  (package
+    (name "python-incremental")
+    (version "17.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "incremental" version))
+       (sha256
+        (base32
+         "1cylxdz1cnkm5g3pklna3h2n0i0rks95ir1pnpxfnvpkmab1cxbv"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/hawkowl/incremental";)
+    (synopsis "Library for versioning Python projects")
+    (description "Incremental is a small library that versions your Python
+projects.")
+    (license license:expat)))
+
+(define-public python2-incremental
+  (package-with-python2 python-incremental))
+
 (define-public python-automat
   (package
     (name "python-automat")



reply via email to

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