mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: python-typing-extensions: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-typing-extensions): Move to... * gnu/packages/python-build.scm (python-typing-extensions): ... here.
This commit is contained in:
parent
3928e3d426
commit
9df900341f
10 changed files with 50 additions and 38 deletions
|
@ -156,6 +156,7 @@ (define-module (gnu packages admin)
|
|||
#:use-module (gnu packages polkit)
|
||||
#:use-module (gnu packages popt)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-crypto)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
|
|
|
@ -113,6 +113,7 @@ (define-module (gnu packages audio)
|
|||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages pulseaudio) ;libsndfile, libsamplerate
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-science)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages qt)
|
||||
|
|
|
@ -62,6 +62,7 @@ (define-module (gnu packages embedded)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-crypto)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
|
|
|
@ -135,6 +135,7 @@ (define-module (gnu packages engineering)
|
|||
#:use-module (gnu packages protobuf)
|
||||
#:use-module (gnu packages pulseaudio)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-check)
|
||||
#:use-module (gnu packages python-crypto)
|
||||
#:use-module (gnu packages python-science)
|
||||
|
|
|
@ -25,6 +25,7 @@ (define-module (gnu packages orange)
|
|||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages graph)
|
||||
#:use-module (gnu packages machine-learning)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-crypto)
|
||||
#:use-module (gnu packages python-science)
|
||||
#:use-module (gnu packages python-web)
|
||||
|
|
|
@ -35,6 +35,7 @@ (define-module (gnu packages potassco)
|
|||
#:use-module (gnu packages libffi)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-xyz))
|
||||
|
||||
(define-public libpotassco
|
||||
|
|
|
@ -5,9 +5,12 @@
|
|||
;;; Copyright © 2020, 2023 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||
;;; Copyright © 2018, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
||||
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2022 Garek Dyszel <garekdyszel@disroot.org>
|
||||
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
||||
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -210,6 +213,45 @@ (define-public python-trove-classifiers
|
|||
PyPI (pypi.org).")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-typing-extensions
|
||||
(package
|
||||
(name "python-typing-extensions")
|
||||
(version "4.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "typing_extensions" version))
|
||||
(sha256
|
||||
(base32
|
||||
"19n4l57qazwrbvxjrbxw2vvfyd0zbk8ivnwm4zmwfzzl69x6glp6"))))
|
||||
(build-system pyproject-build-system)
|
||||
;; Disable the test suite to keep the dependencies to a minimum. Also,
|
||||
;; the test suite requires Python's test module, not available in Guix.
|
||||
(arguments (list #:tests? #f))
|
||||
(native-inputs (list python-flit-core))
|
||||
(home-page "https://github.com/python/typing/typing_extensions")
|
||||
(synopsis "Experimental type hints for Python")
|
||||
(description
|
||||
"The typing_extensions module contains additional @code{typing} hints not
|
||||
yet present in the of the @code{typing} standard library.
|
||||
Included are implementations of:
|
||||
@enumerate
|
||||
@item ClassVar
|
||||
@item ContextManager
|
||||
@item Counter
|
||||
@item DefaultDict
|
||||
@item Deque
|
||||
@item NewType
|
||||
@item NoReturn
|
||||
@item overload
|
||||
@item Protocol
|
||||
@item runtime
|
||||
@item Text
|
||||
@item Type
|
||||
@item TYPE_CHECKING
|
||||
@item AsyncGenerator
|
||||
@end enumerate\n")
|
||||
(license license:psfl)))
|
||||
|
||||
|
||||
;;;
|
||||
;;; Python builder packages.
|
||||
|
|
|
@ -22645,44 +22645,6 @@ (define-public python-typeguard
|
|||
with PEP 484 argument (and return) type annotations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-typing-extensions
|
||||
(package
|
||||
(name "python-typing-extensions")
|
||||
(version "4.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "typing_extensions" version))
|
||||
(sha256
|
||||
(base32
|
||||
"19n4l57qazwrbvxjrbxw2vvfyd0zbk8ivnwm4zmwfzzl69x6glp6"))))
|
||||
(build-system pyproject-build-system)
|
||||
;; The test suite requires Python's test module, not available in Guix.
|
||||
(arguments (list #:tests? #f))
|
||||
(native-inputs (list python-flit-core))
|
||||
(home-page "https://github.com/python/typing/typing_extensions")
|
||||
(synopsis "Experimental type hints for Python")
|
||||
(description
|
||||
"The typing_extensions module contains additional @code{typing} hints not
|
||||
yet present in the of the @code{typing} standard library.
|
||||
Included are implementations of:
|
||||
@enumerate
|
||||
@item ClassVar
|
||||
@item ContextManager
|
||||
@item Counter
|
||||
@item DefaultDict
|
||||
@item Deque
|
||||
@item NewType
|
||||
@item NoReturn
|
||||
@item overload
|
||||
@item Protocol
|
||||
@item runtime
|
||||
@item Text
|
||||
@item Type
|
||||
@item TYPE_CHECKING
|
||||
@item AsyncGenerator
|
||||
@end enumerate\n")
|
||||
(license license:psfl)))
|
||||
|
||||
(define-public bpython
|
||||
(package
|
||||
(name "bpython")
|
||||
|
|
|
@ -42,6 +42,7 @@ (define-module (gnu packages rpc)
|
|||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages protobuf)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages regex)
|
||||
#:use-module (gnu packages tls)
|
||||
|
|
|
@ -63,6 +63,7 @@ (define-module (gnu packages ssh)
|
|||
#:use-module (gnu packages popt)
|
||||
#:use-module (gnu packages protobuf)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages python-crypto)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
|
|
Loading…
Reference in a new issue