mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add python-deepmerge.
* gnu/packages/python-xyz.scm (python-deepmerge): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
c026db3f46
commit
33366f196e
1 changed files with 45 additions and 0 deletions
|
@ -29606,3 +29606,48 @@ (define-public python-flatten-json
|
|||
"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.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-deepmerge
|
||||
(package
|
||||
(name "python-deepmerge")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "deepmerge" version))
|
||||
(sha256
|
||||
(base32 "06hagzg8ccmjzqvszdxb52jgx5il8a1jdz41n4dpkyyjsfg7fi2b"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'build 'set-version
|
||||
(lambda _
|
||||
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)
|
||||
;; ZIP does not support timestamps before 1980.
|
||||
(setenv "SOURCE_DATE_EPOCH" "315532800")))
|
||||
(replace 'build
|
||||
(lambda _
|
||||
(invoke "python" "-m" "build" "--wheel"
|
||||
"--no-isolation" ".")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest"))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((whl (car (find-files "dist" "\\.whl$"))))
|
||||
(invoke "pip" "--no-cache-dir" "--no-input"
|
||||
"install" "--no-deps" "--prefix" #$output whl)))))))
|
||||
(native-inputs
|
||||
(list python-pypa-build
|
||||
python-setuptools-scm
|
||||
python-pytest
|
||||
python-wheel))
|
||||
(home-page "https://deepmerge.readthedocs.io/en/latest/")
|
||||
(synopsis "Merge nested data structures")
|
||||
(description
|
||||
"The @code{deep-merge} Python library provides a toolset to deeply merge
|
||||
nested data structures in Python like lists and dictionaries.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue