gnu: Add python-dotty-dict.

* gnu/packages/python-xyz.scm (python-dotty-dict): New variable.

Signed-off-by: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
This commit is contained in:
Jean-Pierre De Jesus DIAZ 2023-07-28 14:24:01 +02:00 committed by Vagrant Cascadian
parent b3cee1c7e8
commit a8f881d9b3
No known key found for this signature in database
GPG key ID: DC518FC87F9716AA

View file

@ -626,6 +626,25 @@ (define-public python-dotmap
dictionary, can be convert to a dictionary, and is ordered by insertion.")
(license license:expat)))
(define-public python-dotty-dict
(package
(name "python-dotty-dict")
(version "1.3.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "dotty_dict" version))
(sha256
(base32
"058sah2nyg44xq5wxywlzc3abzcv9fifnlvsflwma9mfp01nw0ab"))))
(build-system pyproject-build-system)
(native-inputs (list python-poetry-core))
(home-page "https://github.com/pawelzny/dotty_dict")
(synopsis "Python library for accessing dictionaries using a dot syntax")
(description "This package provides a library that wraps the traditional
Python dictionaries and provides a syntax to access nested dictionaries values
using a dot syntax, for example: @code{dictionary['deeply.nested.key']}.")
(license license:expat)))
(define-public python-twodict
(package
(name "python-twodict")