guix-commits
[Top][All Lists]
Advanced

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

09/14: gnu: Add python2-pathlib.


From: Leo Famulari
Subject: 09/14: gnu: Add python2-pathlib.
Date: Fri, 18 Mar 2016 18:28:18 +0000

lfam pushed a commit to branch master
in repository guix.

commit 76b94885348b20c79c49613c07a0e472d284a36b
Author: Leo Famulari <address@hidden>
Date:   Mon Feb 15 04:22:01 2016 -0500

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b2b9067..cff82fa 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8349,3 +8349,37 @@ library.")
     (package (inherit responses)
       (native-inputs `(("python2-setuptools" ,python2-setuptools)
                        ,@(package-native-inputs responses))))))
+
+(define-public python-pathlib
+  (package
+    (name "python-pathlib")
+    (version "1.0.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "pathlib" version))
+              (sha256
+               (base32
+                "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _ (zero? (system* "python" "./test_pathlib.py")))))))
+    (home-page "https://pathlib.readthedocs.org/";)
+    (synopsis "Object-oriented filesystem paths")
+    (description "Pathlib offers a set of classes to handle filesystem paths.
+It offers the following advantages over using string objects:
+
address@hidden
address@hidden No more cumbersome use of os and os.path functions.  Everything 
can
+be done easily through operators, attribute accesses, and method calls.
address@hidden Embodies the semantics of different path types.  For example,
+comparing Windows paths ignores casing.
address@hidden Well-defined semantics, eliminating any inconsistencies or
+ambiguities (forward vs. backward slashes, etc.).
address@hidden enumerate\n")
+    (license license:expat)))
+
+(define-public python2-pathlib
+  (package-with-python2 python-pathlib))



reply via email to

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