gnu: Add python-pathtools.

* gnu/packages/python-xyz.scm (python-pathtools): New variable.
This commit is contained in:
Julien Lepiller 2020-01-13 00:13:14 +01:00
parent b487b7b5bb
commit 87435943d1
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82

@ -17357,3 +17357,21 @@ file to ensure it completely and accurately describes your project.")
(description "Android Strings Lib provides support for android's strings.xml
files. These files are used to translate strings in android apps.")
(license license:expat)))
(define-public python-pathtools
(package
(name "python-pathtools")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pathtools" version))
(sha256
(base32
"1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw"))))
(build-system python-build-system)
(home-page "https://github.com/gorakhargosh/pathtools")
(synopsis "File system general utilities")
(description "This package provides pattern matching and various utilities
for file systems paths.")
(license license:expat)))