mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-box: Update to 7.1.1.
* gnu/packages/python-xyz.scm (python-box): Update to 7.1.1. [source]: Download from github since pypi tarball does not contain all test files. [build-system]: Use pyproject-build-system. [propagated-inputs]: Remove python-toml; add python-tomli and python-tomli-w. [native-inputs]: Add python-cython, python-pytest, and python-wheel. Change-Id: Ia39063054821e75768b1d9a5c937eab432e7c59e Reviewed-by: Munyoki Kilyungi <me@bonfacemunyoki.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
f6f4c71df5
commit
f285a968b1
1 changed files with 14 additions and 7 deletions
|
@ -108,7 +108,7 @@
|
||||||
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
|
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
|
||||||
;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
||||||
;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
|
;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
|
||||||
;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2021–2024 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>
|
||||||
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
|
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
|
||||||
|
@ -33544,17 +33544,24 @@ and powerful way to handle real-world data, featuring:
|
||||||
(define-public python-box
|
(define-public python-box
|
||||||
(package
|
(package
|
||||||
(name "python-box")
|
(name "python-box")
|
||||||
(version "5.3.0")
|
(version "7.1.1")
|
||||||
(source
|
(source
|
||||||
|
;; The PyPI tarball does not contain all test files.
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "python-box" version))
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/cdgriffith/Box")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0jhrdif57khx2hsw1q6a9x42knwcvq8ijgqyq1jmll6y6ifyzm2f"))))
|
"1v8s6wji17fh87nvamzysvxi8f51h6szh6h6dxvids56gg5zc553"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-msgpack python-ruamel.yaml python-toml))
|
(list python-msgpack python-ruamel.yaml python-tomli python-tomli-w))
|
||||||
|
(native-inputs
|
||||||
|
(list python-cython python-pytest python-wheel))
|
||||||
(home-page "https://github.com/cdgriffith/Box")
|
(home-page "https://github.com/cdgriffith/Box")
|
||||||
(synopsis "Advanced Python dictionaries with dot notation access")
|
(synopsis "Advanced Python dictionaries with dot notation access")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue