[bug#70268,v2,1/1] gnu: Add python-vdf.
Commit Message
From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>
* gnu/packages/python-xyz.scm (python-vdf): New variable.
Reviewed-by: Steve George <steve@futurile.net>
Change-Id: Ie8a14292b9c9937d22f011ac078562e81abd6b36
---
gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
Comments
Steve George <steve@futurile.net> writes:
> From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>
>
> * gnu/packages/python-xyz.scm (python-vdf): New variable.
>
> Reviewed-by: Steve George <steve@futurile.net>
>
> Change-Id: Ie8a14292b9c9937d22f011ac078562e81abd6b36
> ---
> gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
Thanks both, I've pushed this to master as
ca571f4259df82500c687effcdb7d11904a52e6c.
Chris
@@ -6834,6 +6834,24 @@ (define-public python-pygments
"Pygments is a syntax highlighting package written in Python.")
(license license:bsd-2)))
+(define-public python-vdf
+ (package
+ (name "python-vdf")
+ (version "3.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "vdf" version))
+ (sha256
+ (base32
+ "1bz2gn04pl6rj2mawlzlirz1ygg4rdypq0pxbyg018873vs1jm7x"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/ValvePython/vdf")
+ (synopsis "Work with Valve's VDF text format")
+ (description "This package provides @code{python-vdf}, a library for
+working with Valve's VDF text format.")
+ (license license:expat)))
+
(define-public python-pygments-github-lexers
(package
(name "python-pygments-github-lexers")