mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-dotty-dict: Fix build.
* gnu/packages/python-xyz.scm (python-dotty-dict): Fix build. [source]: Switch got git-fetch. [native-inputs]: Add python-pytest. Change-Id: I453ed9910197892bc46ef3339fa47e72c222fb91 Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
2ea055efb0
commit
db277e18c2
1 changed files with 12 additions and 7 deletions
|
@ -2351,14 +2351,19 @@ dictionary, can be convert to a dictionary, and is ordered by insertion.")
|
||||||
(package
|
(package
|
||||||
(name "python-dotty-dict")
|
(name "python-dotty-dict")
|
||||||
(version "1.3.1")
|
(version "1.3.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "dotty_dict" version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/pawelzny/dotty_dict")
|
||||||
"058sah2nyg44xq5wxywlzc3abzcv9fifnlvsflwma9mfp01nw0ab"))))
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32 "0rs83pglkgb4sfnk09rskg8c53hvl7mkjw4vfgl5xc8z13vyi3li"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs (list python-poetry-core python-setuptools))
|
(native-inputs
|
||||||
|
(list python-poetry-core
|
||||||
|
python-pytest
|
||||||
|
python-setuptools))
|
||||||
(home-page "https://github.com/pawelzny/dotty_dict")
|
(home-page "https://github.com/pawelzny/dotty_dict")
|
||||||
(synopsis "Python library for accessing dictionaries using a dot syntax")
|
(synopsis "Python library for accessing dictionaries using a dot syntax")
|
||||||
(description "This package provides a library that wraps the traditional
|
(description "This package provides a library that wraps the traditional
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue