me
/
guix
Archived
1
0
Fork 0

gnu: Add python-dictpath.

* gnu/packages/python-xyz.scm (python-dictpath): New variable.
master
Maxim Cournoyer 2022-04-18 11:04:29 -04:00
parent e5d3408022
commit ea754c74d3
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 19 additions and 0 deletions

View File

@ -27135,6 +27135,25 @@ cryptographically signed ones).")
dictionaries.") dictionaries.")
(license license:expat))) (license license:expat)))
(define-public python-dictpath
(package
(name "python-dictpath")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "dictpath" version))
(sha256
(base32 "1n4hq4wbgaw59bbb16nhkgg5wk8sl4iw940vjrgx4xmifqxxw73m"))))
(build-system python-build-system)
(native-inputs (list python-pytest python-pytest-cov python-pytest-flake8))
(home-page "https://github.com/p1c2u/pathable")
(synopsis "Object-oriented path library for Python")
(description "This object-oriented dictionary path Python library enables
traversing resources like paths or accessing resources on demand with separate
accessor layer.")
(license license:asl2.0)))
(define-public pyzo (define-public pyzo
(package (package
(name "pyzo") (name "pyzo")