me
/
guix
Archived
1
0
Fork 0

gnu: Add python-mergedeep.

* gnu/packages/python-xyz.scm (python-mergedeep): New variable.
master
Maxim Cournoyer 2022-04-19 16:32:47 -04:00
parent abca2b8047
commit 9152574009
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 22 additions and 0 deletions

View File

@ -17428,6 +17428,28 @@ daemon. It is the client side software which allows storing values in one or
more, possibly remote, memcached servers.")
(license license:psfl)))
(define-public python-mergedeep
(package
(name "python-mergedeep")
(version "1.3.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/clarketm/mergedeep")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1msvvdzk33sxzgyvs4fs8dlsrsi7fjj038z83s0yw5h8m8d78469"))))
(build-system python-build-system)
(native-inputs (list python-pytest))
(home-page "https://github.com/clarketm/mergedeep")
(synopsis "Deep merge function for Python")
(description "This package provides a deep merge function for Python,
useful to combine multiple data objects as one.")
(license license:expat)))
(define-public python-clikit
(package
(name "python-clikit")