guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add python-tempdir.


From: Ludovic Courtès
Subject: 01/01: gnu: Add python-tempdir.
Date: Thu, 21 Dec 2017 06:27:18 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit c521c8f1a4cd50996d661c01f8ac6d4832d825f4
Author: Konrad Hinsen <address@hidden>
Date:   Tue Dec 19 12:50:00 2017 +0100

    gnu: Add python-tempdir.
    
    * gnu/packages/python.scm (python-tempdir, python2-tempdir): New
    variables.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4baef43..1ef54b7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11974,3 +11974,30 @@ belong to tagged versions.")
      "BooleanOperations provides a Python library that enables
 boolean operations on paths.")
     (license license:expat)))
+
+(define-public python-tempdir
+  (package
+    (name "python-tempdir")
+    (version "0.7.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "tempdir" version))
+       (sha256
+        (base32
+         "13msyyxqbicr111a294x7fsqbkl6a31fyrqflx3q7k547gnq15k8"))))
+    (build-system python-build-system)
+    (home-page "https://pypi.org/project/tempdir/";)
+    (arguments
+     ;; the package has no tests
+     '(#:tests? #f))
+    (synopsis "Python library for managing temporary directories")
+    (description
+     "This library manages temporary directories that are automatically
+deleted with all their contents when they are no longer needed.  It is
+particularly convenient for use in tests.")
+    (license license:expat)))
+
+(define-public python2-tempdir
+  (package-with-python2 python-tempdir))
+



reply via email to

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