mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add python-types-orjson.
* gnu/packages/python-xyz.scm (python-types-orjson): New variable.
This commit is contained in:
parent
da7e6028c8
commit
6ff0e43d4e
1 changed files with 18 additions and 0 deletions
|
@ -30464,3 +30464,21 @@ (define-public python-rcslice
|
||||||
slice file content line by line or column by column or a combination of
|
slice file content line by line or column by column or a combination of
|
||||||
both.")
|
both.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-types-orjson
|
||||||
|
(package
|
||||||
|
(name "python-types-orjson")
|
||||||
|
(version "3.6.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "types-orjson" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0f66lf2qrl9d4vad42db3dmnzv89h4rr05r5zxx5qcl6kb3zr6ng"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://github.com/python/typeshed")
|
||||||
|
(synopsis "Typing stubs for orjson")
|
||||||
|
(description "This is a PEP 561 type stub package for the @code{orjson}
|
||||||
|
package. It can be used by type-checking tools like mypy, PyCharm, pytype
|
||||||
|
etc. to check code that uses @code{orjson}.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
Loading…
Reference in a new issue