gnu: python-types-setuptools: Update to 80.9.0.20250529.

* gnu/packages/python-xyz.scm (python-types-setuptools): Update to 80.9.0.20250529.
  [build-system]: Use pyproject.
  [native-inputs]: Add python-setuptools.

Change-Id: I02409d88db355068f57c11cf85a70cd5e23a8602
This commit is contained in:
Sharlatan Hellseher 2025-07-13 10:52:57 +01:00
parent 1fd8462496
commit d4e11134ba
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -37977,14 +37977,17 @@ Python, with static types.")
(define-public python-types-setuptools
(package
(name "python-types-setuptools")
(version "67.6.0.5")
(source (origin
(version "80.9.0.20250529")
(source
(origin
(method url-fetch)
(uri (pypi-uri "types-setuptools" version))
(uri (pypi-uri "types_setuptools" version))
(sha256
(base32
"0qlrxgl4mz6hs8z4qnl91hsa8mqcfm6397s3s3j21imxqxk8ww1s"))))
(build-system python-build-system)
(base32 "149w6lg8n56k50n08jx450ni9frs2hzbv729sv48c8ds1jx8iq3r"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #f)) ;no tests in PyPI archive
(native-inputs
(list python-setuptools))
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for setuptools")
(description "This package provides typing stubs for setuptools.")