mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-flatten-json: Update to 0.1.14-0.900c4fe.
* gnu/packages/python-xyz.scm (python-flatten-json): Update to 0.1.14-0.900c4fe. [source]: Swap to git-fetch and latest commit associated with 0.1.14 version. [build-system]: Use pyproject. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Ia28ae8f5a10cd198746b15689b84f512d254a1df
This commit is contained in:
parent
16bd2871d6
commit
60022d25d5
1 changed files with 28 additions and 16 deletions
|
@ -38784,23 +38784,35 @@ parsing.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-flatten-json
|
(define-public python-flatten-json
|
||||||
(package
|
;; The latest version was not tagged on GitHub, PyPI provides no tests, use
|
||||||
(name "python-flatten-json")
|
;; the commit assosiated with 0.1.14 version.
|
||||||
(version "0.1.13")
|
(let ((commit "900c4feebcfcd831ddb6143c4b246024ecf911ec")
|
||||||
(source
|
(revision "0"))
|
||||||
(origin
|
(package
|
||||||
(method url-fetch)
|
(name "python-flatten-json")
|
||||||
(uri (pypi-uri "flatten_json" version))
|
(version (git-version "0.1.14" revision commit))
|
||||||
(sha256
|
(source
|
||||||
(base32 "007m28gfs7pmz2rqqjxpial6skzw26hrfi8vrdy9agi9x0rj6dgf"))))
|
(origin
|
||||||
(build-system python-build-system)
|
(method git-fetch) ; no tests in PyPI release
|
||||||
(propagated-inputs (list python-six))
|
(uri (git-reference
|
||||||
(home-page "https://github.com/amirziai/flatten")
|
(url "https://github.com/amirziai/flatten")
|
||||||
(synopsis "Flatten JSON objects")
|
(commit commit)))
|
||||||
(description
|
(file-name (git-file-name name version))
|
||||||
"The @code{flatten_json} Python library flattens the hierarchy in your
|
(sha256
|
||||||
|
(base32 "1vk2ykmk4wirsywinxk9v520y6iv857bn0hsizm25s3d08v5a3sb"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-six))
|
||||||
|
(home-page "https://github.com/amirziai/flatten")
|
||||||
|
(synopsis "Flatten JSON objects")
|
||||||
|
(description
|
||||||
|
"The @code{flatten_json} Python library flattens the hierarchy in your
|
||||||
object, which can be useful if you want to force your objects into a table.")
|
object, which can be useful if you want to force your objects into a table.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public python-deepdiff
|
(define-public python-deepdiff
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue