diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-08 11:55:05 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 21:34:32 +0100 |
commit | c4439c47402d83303043c03db361b238dec24da5 (patch) | |
tree | f8c65c80b3694207943ca84ed6d4266b04fc22e0 /gnu/packages/python-xyz.scm | |
parent | 663ec5cba6dda2cd7dc258ed7a473899ce66714f (diff) |
gnu: Add python-whatthepatch.
* gnu/packages/python-xyz.scm (python-whatthepatch): New variable.
Change-Id: If087238003594c55f52d4467b6e7b494a52348f8
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 09afe831df..00dea78730 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19813,6 +19813,24 @@ templates into Python modules.") server with very acceptable performance.") (license license:zpl2.1))) +(define-public python-whatthepatch + (package + (name "python-whatthepatch") + (version "1.0.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "whatthepatch" version)) + (sha256 + (base32 "024grf30vkpcfr3bq822zv3slhx12ifm51rmfv1inn0j50blqdvz")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) + (home-page "https://github.com/cscorley/whatthepatch") + (synopsis "Patch parsing and application library") + (description + "This package provides a patch parsing and application library.") + (license license:expat))) + (define-public python-whichcraft (package (name "python-whichcraft") |