guix-commits
[Top][All Lists]
Advanced

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

05/16: gnu: Add python-pathlib2.


From: guix-commits
Subject: 05/16: gnu: Add python-pathlib2.
Date: Wed, 26 Jun 2019 10:33:47 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit bb74ea09902cf23950a852fd7357818479f93ee0
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Jun 25 10:53:19 2019 +0200

    gnu: Add python-pathlib2.
    
    * gnu/packages/python-xyz.scm (python-pathlib2): New variable.
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c94af80..aab7e0c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4827,6 +4827,29 @@ them as the version argument or in a SCM managed file.")
 (define-public python2-setuptools-scm
   (package-with-python2 python-setuptools-scm))
 
+(define-public python-pathlib2
+  (package
+    (name "python-pathlib2")
+    (version "2.3.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pathlib2" version))
+       (sha256
+        (base32
+         "0hpp92vqqgcd8h92msm9slv161b1q160igjwnkf2ag6cx0c96695"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-scandir" ,python-scandir)
+       ("python-six" ,python-six)))
+    (home-page "https://pypi.python.org/pypi/pathlib2/";)
+    (synopsis "Object-oriented filesystem paths")
+    (description "The goal of pathlib2 is to provide a backport of the
+standard @code{pathlib} module which tracks the standard library module, so
+all the newest features of the standard @code{pathlib} can be used also on
+older Python versions.")
+    (license license:expat)))
+
 (define-public python-pathpy
   (package
     (name "python-pathpy")



reply via email to

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