guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: Add python-distutils-extra.


From: Eric Bavier
Subject: 05/10: gnu: Add python-distutils-extra.
Date: Tue, 02 Dec 2014 14:43:57 +0000

bavier pushed a commit to branch master
in repository guix.

commit 1671c07cc713525bd91d5e0a704e01b5d423c0ba
Author: Eric Bavier <address@hidden>
Date:   Thu Nov 20 22:35:41 2014 -0600

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0e9d792..d024c1c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2230,6 +2230,32 @@ simple and Pythonic domain language.")
 (define-public python2-sqlalchemy
   (package-with-python2 python-sqlalchemy))
 
+(define-public python-distutils-extra
+  (package
+    (name "python-distutils-extra")
+    (version "2.38")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "https://launchpad.net/python-distutils-extra/trunk/";
+                          version "/+download/python-distutils-extra-"
+                          version ".tar.gz"))
+      (sha256
+       (base32
+        "0lx15kcbby9zisx33p2h5hgakgwh2bvh0ibag8z0px4j6ifhs41x"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://launchpad.net/python-distutils-extra/";)
+    (synopsis "Enhancements to Python's distutils")
+    (description
+     "The python-distutils-extra module enables you to easily integrate
+gettext support, themed icons, and scrollkeeper-based documentation into
+Python's distutils.")
+    (license gpl2)))
+
+(define-public python2-distutils-extra
+  (package-with-python2 python-distutils-extra))
 (define-public python-pillow
   (package
     (name "python-pillow")



reply via email to

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