~ruther/guix-local

470cd20e3a35800d5b66ca77ef25a2d2eb73d383 — Nicolas Graves 9 months ago ec1bade
gnu: python-cson: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-cson):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.
[description]: Improve style.

Change-Id: I12bc53a9a41b14c23c1f465a8e93bd8d79b899bd
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 11 insertions(+), 8 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -8
@@ 32316,17 32316,20 @@ memoization.")
    (version "0.8")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "cson" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/avakar/pycson")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "00cyvigg4npbph39ghkg77xbxisa6plf75vii24igxfizik0337f"))))
    (build-system python-build-system)
    (propagated-inputs
     (list python-speg))
        (base32 "0d2zbmak0hzsl1w71dgc8x4q4vdfbpk46vwyi9vvvqv7gdqj59fn"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools python-wheel))
    (propagated-inputs (list python-speg))
    (home-page "https://github.com/avakar/pycson")
    (synopsis "Parser for Coffeescript Object Notation (CSON)")
    (description "This package is a parser for Coffeescript Object
Notation (CSON).")
    (description
     "This package is a parser for Coffeescript Object Notation (CSON).")
    (license license:expat)))

(define-public python-aionotify