Skip to content
Snippets Groups Projects
Unverified Commit 1348e512 authored by Ryan Prior via Guix-patches via's avatar Ryan Prior via Guix-patches via Committed by Marius Bakke
Browse files

gnu: Add python-sexpdata.


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

Signed-off-by: default avatarMarius Bakke <mbakke@fastmail.com>
parent 01e81309
No related branches found
No related tags found
No related merge requests found
...@@ -5768,6 +5768,25 @@ (define-public python-setuptools-scm ...@@ -5768,6 +5768,25 @@ (define-public python-setuptools-scm
(define-public python2-setuptools-scm (define-public python2-setuptools-scm
(package-with-python2 python-setuptools-scm)) (package-with-python2 python-setuptools-scm))
   
(define-public python-sexpdata
(package
(name "python-sexpdata")
(version "0.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sexpdata" version))
(sha256
(base32
"1q4lsjyzzqrdv64l0pv4ij9nd8gqhvxqcrpxc2xpxs652sk2gj0s"))))
(build-system python-build-system)
(home-page "https://github.com/jd-boyd/sexpdata")
(synopsis "S-expression parser for Python")
(description
"Sexpdata is an S-expression parser/serializer. It has load and dump
functions like pickle, json or PyYAML module.")
(license license:bsd-3)))
(define-public python-pathlib2 (define-public python-pathlib2
(package (package
(name "python-pathlib2") (name "python-pathlib2")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment