mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-zxcvbn: Switch to pyproject.
* gnu/packages/python-crypto.scm (python-zxcvbn): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. [source, description]: Improve style. Change-Id: Id8e5ced7a074af5c8518c34a1d584740fdc2cafe Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
db8c641876
commit
16df8904e1
1 changed files with 16 additions and 14 deletions
|
@ -1760,22 +1760,24 @@ speed but without C extensions.")
|
||||||
(package
|
(package
|
||||||
(name "python-zxcvbn")
|
(name "python-zxcvbn")
|
||||||
(version "4.4.28")
|
(version "4.4.28")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch) ;for tests
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch) ;for tests
|
||||||
(url "https://github.com/dwolfhub/zxcvbn-python")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/dwolfhub/zxcvbn-python")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0xzlsqc9h0llfy19w4m39jgfcnvzqviv8jhgwn3r75kip97i5mvs"))))
|
(base32 "0xzlsqc9h0llfy19w4m39jgfcnvzqviv8jhgwn3r75kip97i5mvs"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs (list python-pytest python-setuptools python-wheel))
|
||||||
(home-page "https://github.com/dwolfhub/zxcvbn-python")
|
(home-page "https://github.com/dwolfhub/zxcvbn-python")
|
||||||
(synopsis "Realistic password strength estimator Python library")
|
(synopsis "Realistic password strength estimator Python library")
|
||||||
(description "This is a Python implementation of the @code{zxcvbn} library
|
(description
|
||||||
created at Dropbox. The original library, written for JavaScript, can be
|
"This is a Python implementation of the @code{zxcvbn} library created at
|
||||||
found @url{https://github.com/dropbox/zxcvbn, here}. This port includes
|
Dropbox. The original library, written for JavaScript, can be found
|
||||||
features such as:
|
@url{https://github.com/dropbox/zxcvbn, here}. This port includes features
|
||||||
|
such as:
|
||||||
@enumerate
|
@enumerate
|
||||||
@item Accepts user data to be added to the dictionaries that are tested
|
@item Accepts user data to be added to the dictionaries that are tested
|
||||||
against (name, birthdate, etc.)
|
against (name, birthdate, etc.)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue