mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-dictdiffer.
* gnu/packages/python-xyz.scm (python-dictdiffer): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
6b219b8992
commit
23a97f5240
1 changed files with 32 additions and 0 deletions
|
@ -85,6 +85,7 @@
|
|||
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
|
||||
;;; Copyright © 2020 Hendursaga <hendursaga@yahoo.com>
|
||||
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -21472,6 +21473,37 @@ (define-public python-diceware
|
|||
cryptographically signed ones).")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-dictdiffer
|
||||
(package
|
||||
(name "python-dictdiffer")
|
||||
(version "0.8.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "dictdiffer" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1lk3qmy1hkaphk4n7ayfk0wl6m2yvd6r7qkam6yncqfzgkbc1phs"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-check-manifest" ,python-check-manifest)
|
||||
("python-coverage" ,python-coverage)
|
||||
("python-isort" ,python-isort)
|
||||
("python-mock" ,python-mock)
|
||||
("python-pydoctstyle" ,python-pydocstyle)
|
||||
("python-pytest-cache" ,python-pytest-cache)
|
||||
("python-pytest-cov" ,python-pytest-cov)
|
||||
("python-pytest-pep8" ,python-pytest-pep8)
|
||||
("python-pytest-runner" ,python-pytest-runner)
|
||||
("python-pytest" ,python-pytest)
|
||||
("python-setuptools-scm" ,python-setuptools-scm)
|
||||
("python-tox" ,python-tox)))
|
||||
(home-page "https://github.com/inveniosoftware/dictdiffer")
|
||||
(synopsis "Diff and patch Python dictionary objects")
|
||||
(description
|
||||
"Dictdiffer is a Python module that helps you to diff and patch
|
||||
dictionaries.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public pyzo
|
||||
(package
|
||||
(name "pyzo")
|
||||
|
|
Loading…
Reference in a new issue