mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-apipkg: Update to 3.0.2.
* gnu/packages/python-xyz.scm (python-apipkg): Update to 3.0.2. [build-system]: Use pyproject. [native-inputs]: Remove python-pytest and python-setuptools-scm; add python-hatch-vcs and python-hatchling. Change-Id: I87fe8543f29506b6a453984de6191b97503e97c5
This commit is contained in:
parent
8e8b222ab1
commit
a36fa389f1
1 changed files with 12 additions and 10 deletions
|
@ -20288,21 +20288,23 @@ to your log entries.")
|
||||||
(define-public python-apipkg
|
(define-public python-apipkg
|
||||||
(package
|
(package
|
||||||
(name "python-apipkg")
|
(name "python-apipkg")
|
||||||
(version "1.5")
|
(version "3.0.2")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "apipkg" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "apipkg" version))
|
||||||
(base32
|
(sha256
|
||||||
"1xhak74yj3lqflvpijg15rnkklrigvsp5q7s4as4h6a157d8q8ip"))))
|
(base32 "03ay7j57mfh4sa8vh9qwid1ggwdc0lasyw3ycsmgv5r6z2j63an7"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments (list #:tests? #f)) ;no tests in PyPI archvie
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-setuptools-scm))
|
(list python-hatch-vcs
|
||||||
|
python-hatchling))
|
||||||
|
(home-page "https://github.com/pytest-dev/apipkg")
|
||||||
(synopsis "Namespace control and lazy-import mechanism")
|
(synopsis "Namespace control and lazy-import mechanism")
|
||||||
(description "With apipkg you can control the exported namespace of a Python
|
(description "With apipkg you can control the exported namespace of a Python
|
||||||
package and greatly reduce the number of imports for your users. It is a small
|
package and greatly reduce the number of imports for your users. It is a small
|
||||||
pure Python module that works on virtually all Python versions.")
|
pure Python module that works on virtually all Python versions.")
|
||||||
(home-page "https://github.com/pytest-dev/apipkg")
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-execnet
|
(define-public python-execnet
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue