diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-22 01:30:43 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:55 +0100 |
| commit | 7c156003e8f29f30d431a65143ce8fdd01361499 (patch) | |
| tree | ef76dfa164b82a9d8d37f10b99d2a2999e594f1e /gnu/packages/python-xyz.scm | |
| parent | 9156f680aa28f00bedf1fd0369710f9ed59712d0 (diff) | |
gnu: python-treelib: Remove python-six properly.
The package still used python-six. Luckily a PR was ready for its
removal.
* gnu/packages/python-xyz.scm (python-treelib)[source]: Add patch.
* gnu/packages/patches/python-treelib-remove-python2-compat.patch: Add file.
* gnu/local.mk: Record patch.
Change-Id: I91a37770391cc72f158ade5b9619e80ab9a36bc7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e6a88d7e9f..1a7109206f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14636,13 +14636,15 @@ without using the configuration machinery.") (version "1.8.0") (source (origin - (method git-fetch) ; no tests in PyPI + (method git-fetch) (uri (git-reference (url "https://github.com/caesar0301/treelib") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0jd3rdaq8v7ykb626cm1gxa03higqnn2pmnv46fc0lc55xbrkxlf")))) + (base32 "0jd3rdaq8v7ykb626cm1gxa03higqnn2pmnv46fc0lc55xbrkxlf")) + (patches + (search-patches "python-treelib-remove-python2-compat.patch")))) (build-system pyproject-build-system) (native-inputs (list python-poetry-core python-pytest)) (home-page "https://github.com/caesar0301/treelib") |
