guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: Add python-setuptools-scm.


From: Ricardo Wurmus
Subject: 02/08: gnu: Add python-setuptools-scm.
Date: Mon, 12 Oct 2015 14:08:37 +0000

rekado pushed a commit to branch master
in repository guix.

commit 229ad120d473360c1e575529c0e105f76a0add54
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Sep 22 14:59:13 2015 +0200

    gnu: Add python-setuptools-scm.
    
    * gnu/packages/python.scm (python-setuptools-scm,
      python2-setuptools-scm): New variables.
---
 gnu/packages/python.scm |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b999b83..bf21e9a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3763,6 +3763,30 @@ child application and control it as if a human were 
typing commands.")
 (define-public python2-pexpect
   (package-with-python2 python-pexpect))
 
+(define-public python-setuptools-scm
+  (package
+    (name "python-setuptools-scm")
+    (version "1.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://pypi.python.org/packages/source/s/";
+                                  "setuptools_scm/setuptools_scm-"
+                                  version ".tar.bz2"))
+              (sha256
+               (base32
+                "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/pypa/setuptools_scm/";)
+    (synopsis "Manage Python package versions in SCM metadata")
+    (description
+     "setuptools_scm handles managing your Python package versions in
address@hidden configuration management} (SCM) metadata instead of declaring
+them as the version argument or in a SCM managed file.")
+    (license license:expat)))
+
+(define-public python2-setuptools-scm
+  (package-with-python2 python-setuptools-scm))
+
 (define-public python-ipython
   (package
     (name "python-ipython")



reply via email to

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