mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: Add python-pathtools.
* gnu/packages/python-xyz.scm (python-pathtools): New variable.
This commit is contained in:
parent
54e5ee5a36
commit
02139b4214
1 changed files with 19 additions and 0 deletions
|
@ -17006,3 +17006,22 @@ (define-public python-flit
|
|||
name as the name on PyPI. All subpackages and data files within a package
|
||||
are included automatically.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(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 "Path utilities for Python")
|
||||
(description "Pattern matching and various utilities for file systems
|
||||
paths.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue