gnu: python-tomlkit: Update to 0.7.0.
* gnu/packages/python-xyz.scm (python-tomlkit): Update to 0.7.0. [native-inputs]: Add python-pyyaml. [description]: Update description. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
aaa1b80499
commit
e318c3a6aa
|
@ -13021,20 +13021,21 @@ docstring and colored output.")
|
||||||
(define-public python-tomlkit
|
(define-public python-tomlkit
|
||||||
(package
|
(package
|
||||||
(name "python-tomlkit")
|
(name "python-tomlkit")
|
||||||
(version "0.6.0")
|
(version "0.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tomlkit" version))
|
(uri (pypi-uri "tomlkit" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16jf0060csn8p500jnxa7m5h1sl3pzispvd11961dzrhh287dybl"))))
|
(base32 "062n694sfv24ylda6nh8228y2q9hrvy554kqx84y7czsjfbg4mxc"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)))
|
`(("python-pytest" ,python-pytest)
|
||||||
|
("python-pyyaml" ,python-pyyaml)))
|
||||||
(home-page "https://github.com/sdispater/tomlkit")
|
(home-page "https://github.com/sdispater/tomlkit")
|
||||||
(synopsis "Style-preserving TOML library")
|
(synopsis "Style-preserving TOML library")
|
||||||
(description
|
(description
|
||||||
"TOML Kit is a 0.5.0-compliant TOML library. It includes a parser that
|
"TOML Kit is a 1.0.0rc1-compliant TOML library. It includes a parser that
|
||||||
preserves all comments, indentations, whitespace and internal element ordering,
|
preserves all comments, indentations, whitespace and internal element ordering,
|
||||||
and makes them accessible and editable via an intuitive API. It can also
|
and makes them accessible and editable via an intuitive API. It can also
|
||||||
create new TOML documents from scratch using the provided helpers. Part of the
|
create new TOML documents from scratch using the provided helpers. Part of the
|
||||||
|
|
Reference in New Issue