mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pytest-isort: Switch to pyproject.
* gnu/packages/python-check.scm (python-pytest-isort): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]: Remove them. [native-inputs]: Add python-poetry-core. [home-page]: Refresh. Change-Id: I712fcdd2bb659b5f9d2a8fbfca2d8cd0d2cdb127 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
77faad4aa2
commit
fc194e7755
1 changed files with 10 additions and 9 deletions
|
@ -2495,16 +2495,17 @@ requests to be replied to with user provided responses.")
|
||||||
(version "3.1.0")
|
(version "3.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "pytest_isort" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/stephrdev/pytest-isort")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0v0qa5l22y3v0nfkpvghbinzyj2rh4f54k871lrp992lbvf02y06"))))
|
(base32 "07hj2z2jsshk0m60j0w10q3yzis69714k7qbw2f0cprc5li9b06n"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(propagated-inputs (list python-isort python-pytest))
|
||||||
`(#:tests? #f)) ; No tests in PyPi tarball.
|
(native-inputs (list python-poetry-core))
|
||||||
(propagated-inputs
|
(home-page "https://github.com/stephrdev/pytest-isort")
|
||||||
(list python-isort python-pytest))
|
|
||||||
(home-page "https://github.com/moccu/pytest-isort/")
|
|
||||||
(synopsis "Pytest plugin to check import ordering using isort")
|
(synopsis "Pytest plugin to check import ordering using isort")
|
||||||
(description
|
(description
|
||||||
"This package provides a pytest plugin to check import ordering using
|
"This package provides a pytest plugin to check import ordering using
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue