mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-bsdiff4: Update to 1.2.6.
* gnu/packages/python-xyz.scm (python-bsdiff4): Update to 1.2.6. Improve package style. [build-system]: Use pyproject. [arguments] <test-flags>: Provide "--pyargs" to tests installed library. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Ic8feac3a4887204f2864827eba1187d89640df19
This commit is contained in:
parent
60022d25d5
commit
bc83188dcd
1 changed files with 22 additions and 14 deletions
|
@ -39427,22 +39427,30 @@ Python code as generators in your source files to generate arbitrary text.")
|
||||||
(define-public python-bsdiff4
|
(define-public python-bsdiff4
|
||||||
(package
|
(package
|
||||||
(name "python-bsdiff4")
|
(name "python-bsdiff4")
|
||||||
(version "1.2.2")
|
(version "1.2.6")
|
||||||
(home-page "https://github.com/ilanschnell/bsdiff4")
|
(source
|
||||||
(source (origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url home-page)
|
(url "https://github.com/ilanschnell/bsdiff4")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1s64xmgcyzp7x6rcyfcryyz4mv5qm8l7s365rgbi6qfpnblnby0c"))))
|
||||||
"1fa0vkmbr0a9xifq7i5gfcf7ifn739i1fdij8awynm299fsqvvhx"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-flags #~(list "--pyargs" "bsdiff4")))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(home-page "https://github.com/ilanschnell/bsdiff4")
|
||||||
(synopsis "Binary diff and patch using the BSDIFF4 format")
|
(synopsis "Binary diff and patch using the BSDIFF4 format")
|
||||||
(description "This package provides a Python library for the @code{bsdiff}
|
(description
|
||||||
binary diff utility. It also provides two command-line tools, @code{bsdiff4}
|
"This package provides a Python library for the @code{bsdiff} binary diff
|
||||||
and @code{bspatch4}.")
|
utility. It also provides two command-line tools, @code{bsdiff4} and
|
||||||
|
@code{bspatch4}.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public python-mpv
|
(define-public python-mpv
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue