mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-srt.
* gnu/packages/python-xyz (python-srt): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6caac30e44
commit
5bfb7ebe5d
1 changed files with 19 additions and 1 deletions
|
@ -107,7 +107,7 @@
|
||||||
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||||
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
|
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
|
||||||
;;; Copyright © 2021 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
;;; Copyright © 2021 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
||||||
;;; Copyright © 2021 Pradana Aumars <paumars@courrier.dev>
|
;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
|
||||||
;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
|
||||||
;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
|
;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
|
||||||
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
|
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
|
||||||
|
@ -31787,3 +31787,21 @@ Pickle for serialization, which has many drawbacks.")
|
||||||
"This package provides a lightweight console printing and formatting
|
"This package provides a lightweight console printing and formatting
|
||||||
toolkit for Python.")
|
toolkit for Python.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-srt
|
||||||
|
(package
|
||||||
|
(name "python-srt")
|
||||||
|
(version "3.5.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "srt" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0l24710spxarijmv3h7iicvx0lv6m3d4xg77nd9kyv8jwifav93s"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://github.com/cdown/srt")
|
||||||
|
(synopsis "SRT parsing library")
|
||||||
|
(description
|
||||||
|
"This package provides a Python library for parsing, modifying, and
|
||||||
|
composing subtitles in the SRT file format.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue