diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-23 15:32:03 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-23 17:09:41 +0100 |
| commit | 7548be58c79fe66d24b7de26207526f057c1fa8c (patch) | |
| tree | 38cbfc1218bdd81e755986668be4256721cd25cd /gnu/packages/textutils.scm | |
| parent | bf970786827efa8431ba0b100d4c2882012be4e7 (diff) | |
gnu: txt2tags: Switch to pyproject.
* gnu/packages/textutils.scm (txt2tags)[source]: Switch to git-fetch
providing tests.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Remove python-tox; add python-setuptools.
Change-Id: Ief209c0de837c6f2e02eaa346f47c56ad09d037f
Diffstat (limited to 'gnu/packages/textutils.scm')
| -rw-r--r-- | gnu/packages/textutils.scm | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 715b9c4f986..368cd1bd71f 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm | |||
| @@ -1173,14 +1173,21 @@ file, but can even be dynamic.") | |||
| 1173 | (package | 1173 | (package |
| 1174 | (name "txt2tags") | 1174 | (name "txt2tags") |
| 1175 | (version "3.9") | 1175 | (version "3.9") |
| 1176 | (source (origin | 1176 | (source |
| 1177 | (method url-fetch) | 1177 | (origin |
| 1178 | (uri (pypi-uri "txt2tags" version)) | 1178 | (method git-fetch) |
| 1179 | (sha256 | 1179 | (uri (git-reference |
| 1180 | (base32 | 1180 | (url "https://github.com/txt2tags/txt2tags") |
| 1181 | "0ik7gpr3gymgxnj0p86k8768kyxncbncv93zq67sbak3dbdl8hky")))) | 1181 | (commit version))) |
| 1182 | (build-system python-build-system) | 1182 | (file-name (git-file-name name version)) |
| 1183 | (native-inputs (list python-tox)) | 1183 | (sha256 |
| 1184 | (base32 "1nfps6c3jchjkbwzh8v919fxql91l1lxa6q1vssprxivk0jcc0rz")))) | ||
| 1185 | (build-system pyproject-build-system) | ||
| 1186 | (arguments | ||
| 1187 | (list #:test-backend #~'custom | ||
| 1188 | #:test-flags #~(list "test/run.py"))) | ||
| 1189 | (native-inputs | ||
| 1190 | (list python-setuptools)) | ||
| 1184 | (home-page "https://txt2tags.org") | 1191 | (home-page "https://txt2tags.org") |
| 1185 | (synopsis "Convert between markup languages") | 1192 | (synopsis "Convert between markup languages") |
| 1186 | (description | 1193 | (description |
