diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-26 00:55:18 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-03 08:01:06 +0100 |
| commit | 479de7b3adcb11e7c18c3a97e81e5a664a1021b2 (patch) | |
| tree | adf5b5aa7e644f0aeb143018bccbf19c4e9257bc /gnu/packages/python-crypto.scm | |
| parent | 6b52644eccec9df65bc48a33f097284c4f19fc11 (diff) | |
gnu: python-ntlm-auth: Update to 1.5.0.
* gnu/packages/python-crypto.scm (python-ntlm-auth): Update to 1.5.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-requests,
python-setuptools, python-wheel.
Change-Id: Ib97d312871975aac472b303930e2073214d73b66
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
| -rw-r--r-- | gnu/packages/python-crypto.scm | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 0d09408cb96..c172247e6d9 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1446,20 +1446,22 @@ tool to securely sign firmware images for booting by MCUboot.") (define-public python-ntlm-auth (package (name "python-ntlm-auth") - (version "1.4.0") + (version "1.5.0") (source (origin - (method url-fetch) - (uri (pypi-uri "ntlm-auth" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/jborean93/ntlm-auth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "16mavidki4ma5ip8srqalr19gz4f5yn3cnmmgps1fmgfr24j63rm")))) - (build-system python-build-system) - (propagated-inputs - (list python-cryptography)) + (base32 "00dpf5bfsy07frsjihv1k10zmwcyq4bvkilbxha7h6nlwpcm2409")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-requests python-setuptools python-wheel)) + (propagated-inputs (list python-cryptography)) (home-page "https://github.com/jborean93/ntlm-auth") - (synopsis - "Calculates NTLM Authentication codes") + (synopsis "Calculates NTLM Authentication codes") (description "This library handles the low-level details of NTLM authentication for use in authenticating with a service that uses NTLM. It will create and parse |
