mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-misskey.
* gnu/packages/python-xyz.scm (python-misskey): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
1385ef76d7
commit
67fcc6e339
1 changed files with 23 additions and 0 deletions
|
@ -30521,3 +30521,26 @@ both.")
|
||||||
package. It can be used by type-checking tools like mypy, PyCharm, pytype
|
package. It can be used by type-checking tools like mypy, PyCharm, pytype
|
||||||
etc. to check code that uses @code{orjson}.")
|
etc. to check code that uses @code{orjson}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-misskey
|
||||||
|
(package
|
||||||
|
(name "python-misskey")
|
||||||
|
(version "4.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/YuzuRyo61/Misskey.py")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0rma8pdsjsy00cg76q6q4qki4xpldykmz1m6dl3w2bjjxfhlbaz5"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments (list #:tests? #f)) ;needs network
|
||||||
|
(propagated-inputs (list python-requests))
|
||||||
|
(home-page "https://misskeypy.readthedocs.io")
|
||||||
|
(synopsis "Python bindings for Misskey's API")
|
||||||
|
(description
|
||||||
|
"This package provides access to Misskey's API. Misskey is a SNS
|
||||||
|
platform using the ActivityPub protocol.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue