mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
ec1bade27d
commit
470cd20e3a
1 changed files with 11 additions and 8 deletions
|
@ -32316,17 +32316,20 @@ memoization.")
|
||||||
(version "0.8")
|
(version "0.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "cson" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/avakar/pycson")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "00cyvigg4npbph39ghkg77xbxisa6plf75vii24igxfizik0337f"))))
|
(base32 "0d2zbmak0hzsl1w71dgc8x4q4vdfbpk46vwyi9vvvqv7gdqj59fn"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
(native-inputs (list python-pytest python-setuptools python-wheel))
|
||||||
(list python-speg))
|
(propagated-inputs (list python-speg))
|
||||||
(home-page "https://github.com/avakar/pycson")
|
(home-page "https://github.com/avakar/pycson")
|
||||||
(synopsis "Parser for Coffeescript Object Notation (CSON)")
|
(synopsis "Parser for Coffeescript Object Notation (CSON)")
|
||||||
(description "This package is a parser for Coffeescript Object
|
(description
|
||||||
Notation (CSON).")
|
"This package is a parser for Coffeescript Object Notation (CSON).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-aionotify
|
(define-public python-aionotify
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue