diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-09 12:35:13 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-09 12:37:31 +0100 |
| commit | 63343094953f1ba49ae89db5ef33a20f37dbacb8 (patch) | |
| tree | 76ff3e7f972727745dbec940025b813386bb2829 /gnu/packages/python-xyz.scm | |
| parent | 817350b815ffd3559bdb220f7ee53257e322bb7e (diff) | |
gnu: python-vcversioner: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-vcversioner)[build-system]: Switch
to pyproject-build-system.
[arguments] <tests?>: No tests in PyPI.
[native-inputs]: Add python-setuptools.
Change-Id: Ieed2b0967048dfcba1f3a701dc0564d2cf2bdca2
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3a611a164b..789f5116f6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7655,6 +7655,8 @@ and configurable such as option groups, constraints, subcommand aliases, subcommands sections and a themeable HelpFormatter.") (license license:bsd-3))) +;; XXX: No fresh releases or updates since 2016, consider to remove, leaf +;; package. (define-public python-vcversioner (package (name "python-vcversioner") @@ -7666,12 +7668,16 @@ subcommands sections and a themeable HelpFormatter.") (sha256 (base32 "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI archvie + (native-inputs + (list python-setuptools)) + (home-page "https://github.com/habnabit/vcversioner") (synopsis "Python library for version number discovery") (description "Vcversioner is a Python library that inspects tagging information in a variety of version control systems in order to discover version numbers.") - (home-page "https://github.com/habnabit/vcversioner") (license license:isc))) (define-public python-jsondiff |
