mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge remote-tracking branch 'savannah/master' into mesa-updates
Change-Id: Iad185e2ced97067b3dff8fd722435a6c5e2c00e5
This commit is contained in:
commit
6cae1db889
171 changed files with 93583 additions and 57651 deletions
|
@ -151,6 +151,7 @@
|
|||
;;; Copyright © 2024 Ian Eure <ian@retrospec.tv>
|
||||
;;; Copyright © 2024 Adriel Dumas--Jondeau <leirda@disroot.org>
|
||||
;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
|
||||
;;; Copyright © 2024 TakeV <takev@disroot.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1078,6 +1079,25 @@ names for 256 color terminal setups.")
|
|||
as functions or string constants to form colored terminal output.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-colorthief
|
||||
(package
|
||||
(name "python-colorthief")
|
||||
(version "0.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "colorthief" version))
|
||||
(sha256
|
||||
(base32 "08bjsmmkihyksms2vgndslln02rvw56lkxz28d39qrnxbg4v1707"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-pillow))
|
||||
(home-page "https://github.com/fengsp/color-thief-py")
|
||||
(synopsis "Grab the color palette of an image")
|
||||
(description
|
||||
"This package provides methods to determine the dominant color
|
||||
of an image, as well as constructing a representative color palette.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-construct-classes
|
||||
(package
|
||||
(name "python-construct-classes")
|
||||
|
@ -20731,6 +20751,35 @@ implementation has been adapted, improved, and fixed from Molten.")
|
|||
running in.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public python-shshsh
|
||||
(package
|
||||
(name "python-shshsh")
|
||||
(version "1.0.5")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/zqqqqz2000/shshsh")
|
||||
(commit
|
||||
"fd21c8696aebaae04507760c16cb45979291fef5")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1wzqyj1a6jj6cyv5ymzy834qm2lyq80yy1kfz0q0zayq9gm1cj7f"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-poetry-core
|
||||
python-pytest
|
||||
python-tox))
|
||||
(home-page "https://github.com/zqqqqz2000/shshsh")
|
||||
(synopsis "Write Shell commands simply and safely within Python")
|
||||
(description "This package provides a way to write Shell commands from
|
||||
within Python. Python functions can be chained together to process input
|
||||
Bash control characters are escapted so that parameters can be passed
|
||||
without worrying about command injection.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-memcached
|
||||
(package
|
||||
(name "python-memcached")
|
||||
|
@ -34972,6 +35021,28 @@ sources. For example, it allows you to have all your casting and
|
|||
parsing rules in a single place.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-iterable-io
|
||||
(package
|
||||
(name "python-iterable-io")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "iterable-io" version))
|
||||
(sha256
|
||||
(base32 "0g4cn522n4dv6ly8pwf97dc62rr4f7my38v0bh6vmac7jmrip7pv"))))
|
||||
(build-system pyproject-build-system)
|
||||
(home-page "https://github.com/pR0Ps/iterable-io")
|
||||
(synopsis "Adapt generators and other iterables to a file-like interface")
|
||||
(description
|
||||
"@code{iterable-io} is a small Python library that provides an adapter so
|
||||
that it's possible to read from
|
||||
@url{https://docs.python.org/3/glossary.html#term-iterable,iterable} objects
|
||||
in the same way as
|
||||
@url{https://docs.python.org/3/glossary.html#term-file-object,file-like}
|
||||
objects.")
|
||||
(license license:lgpl3)))
|
||||
|
||||
(define-public python-iteround
|
||||
(package
|
||||
(name "python-iteround")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue