gnu: Add python-pathtools.
* gnu/packages/python-xyz.scm (python-pathtools): New variable.
This commit is contained in:
parent
b487b7b5bb
commit
87435943d1
1 changed files with 18 additions and 0 deletions
|
@ -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
|
(description "Android Strings Lib provides support for android's strings.xml
|
||||||
files. These files are used to translate strings in android apps.")
|
files. These files are used to translate strings in android apps.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
Reference in a new issue