guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: add python-appdirs.


From: Cyril Roelandt
Subject: 01/05: gnu: add python-appdirs.
Date: Tue, 01 Sep 2015 21:27:22 +0000

steap pushed a commit to branch master
in repository guix.

commit 7e7b27d9060420a5dad8e082d71f46c0fea4a7d9
Author: Cyril Roelandt <address@hidden>
Date:   Sun Aug 16 16:18:09 2015 +0200

    gnu: add python-appdirs.
    
    * gnu/packages/python.scm (python-appdirs, python2-appdirs): New variables.
---
 gnu/packages/python.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 75f285f..19dcf5a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4652,3 +4652,31 @@ or create documents in LilyPond format.  A command line 
program ly is also
 provided that can be used to do various manipulations with LilyPond files.")
     (home-page "https://pypi.python.org/pypi/python-ly";)
     (license gpl2+)))
+
+(define-public python-appdirs
+  (package
+    (name "python-appdirs")
+    (version "1.4.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://pypi.python.org/packages/source/a/appdirs/appdirs-";
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "1iddva7v3fq0aqzsahkazxr7vpw28mqcrsy818z4wyiqnkplbhlg"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-setuptools" ,python-setuptools)))
+    (home-page "http://github.com/ActiveState/appdirs";)
+    (synopsis
+      "Determine platform-specific dirs, e.g. a \"user data dir\"")
+    (description
+      "This module provides a portable way of finding out where user data
+should be stored on various operating systems.")
+    (license license:expat)))
+
+(define-public python2-appdirs
+  (package-with-python2 python-appdirs))



reply via email to

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