gnu: Add python-copydetect.

* gnu/packages/python-xyz.scm (python-copydetect): New variable.

Change-Id: I7b0b09b602d0b158c784e0e40fddd80c74d9b9f2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Liliana Marie Prikler 2025-07-22 08:40:02 +02:00 committed by Sharlatan Hellseher
parent 5a45e69d52
commit e8a903ca9f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -553,6 +553,34 @@ line drawing algorithm}.")
understanding ECMA script.")
(license license:expat)))
(define-public python-copydetect
(package
(name "python-copydetect")
(version "0.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/blingenf/copydetect")
(commit version)))
(sha256
(base32 "0hp9994bbnzp79xxprgwsbgc0w06sb4n82nghl90w1z9zbvwn6gz"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-jinja2
python-matplotlib
python-numpy
python-pygments
python-tqdm))
(native-inputs (list python-setuptools
python-pytest
python-wheel))
(home-page "https://github.com/blingenf/copydetect")
(synopsis "Code plagiarism detection tool")
(description "Copydetect is a tool to detect likely instances of plagiarism
based on the winnowing algorithm. It takes a list of directories as input and
generates an HTML report displaying copied slices as output.")
(license license:expat)))
(define-public python-couleur
(package
(name "python-couleur")