mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-distance: Update to 0.1.3-0.ad7f9dc.
* gnu/packages/python-xyz.scm (python-distance): Update to 0.1.3-0.ad7f9dc. [source]: Switch to git-fetch. [arguments]: Set <#:test-backend> and <#:test-flags>. [native-inputs]: Remove python-wheel. Change-Id: I76fdce7caa7cff779ef6df60dd3969aea57be5d5 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
f9fc9c1d4e
commit
bdf0b56b85
1 changed files with 24 additions and 18 deletions
|
@ -770,19 +770,25 @@ fullscreen terminal rendering, and keyboard input event reporting.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-distance
|
(define-public python-distance
|
||||||
|
(let ((commit "ad7f9dc7e9b0e88a08d0cefd1442f4ab1dd1779b")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "python-distance")
|
(name "python-distance")
|
||||||
(version "0.1.3")
|
(version (git-version "0.1.3" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "Distance" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/doukremt/distance")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0la51nzzqrkisshwbk2wpviisqqzylwkz9qsa9f3y05nyn27b030"))))
|
(base32 "1vcn0506dy68xyjxdjsl75zzc4b8lmg2yxjgak4i35l7a97yzvwy"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs
|
(arguments
|
||||||
(list python-setuptools
|
(list #:test-backend #~'custom
|
||||||
python-wheel))
|
#:test-flags #~(list "tests/tests.py")))
|
||||||
|
(native-inputs (list python-setuptools))
|
||||||
(home-page "https://github.com/doukremt/distance")
|
(home-page "https://github.com/doukremt/distance")
|
||||||
(synopsis "Utilities for comparing sequences")
|
(synopsis "Utilities for comparing sequences")
|
||||||
(description
|
(description
|
||||||
|
@ -790,7 +796,7 @@ fullscreen terminal rendering, and keyboard input event reporting.")
|
||||||
arbitrary sequences. Included metrics are Levenshtein, Hamming, Jaccard, and
|
arbitrary sequences. Included metrics are Levenshtein, Hamming, Jaccard, and
|
||||||
Sorensen distance, plus some bonuses. All distance computations are
|
Sorensen distance, plus some bonuses. All distance computations are
|
||||||
implemented in pure Python, and most of them are also implemented in C.")
|
implemented in pure Python, and most of them are also implemented in C.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public python-domdf-python-tools
|
(define-public python-domdf-python-tools
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue