diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-16 10:51:34 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:13 +0100 |
| commit | d5007a8ef90ec61feffe0cfdcf7de666d48ff256 (patch) | |
| tree | b8cc168b95cb6f283007c4d8339a59b79cda07d6 /gnu/packages/python-xyz.scm | |
| parent | fa20d43c139c7cab8f22cf67e859fa3a42ebad40 (diff) | |
gnu: python-gssapi: Update to 1.10.0.
* gnu/packages/python-xyz.scm (python-gssapi): Update to 1.10.0.
[build-system]: Switch to pyproject-build-system.
[arguments] <test-flags>: Add '--pyargs' option to tests against
installed library.
[propagated-inputs]: Remove python-six.
[native-inputs]: Remove python-nose; add python-pytest and
python-setuptools.
Change-Id: I517b2ecf9527f15dc54c08186a51569f6a730586
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9db2d3bfe3..07f994731f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32465,23 +32465,26 @@ tests.") (define-public python-gssapi (package (name "python-gssapi") - (version "1.8.2") + (version "1.10.0") (source (origin (method url-fetch) (uri (pypi-uri "gssapi" version)) (sha256 - (base32 - "16n86nr19s95czvc1a9mdhs1kiq77qkcjp2c1rk5h4f93h10m3mp")))) - (build-system python-build-system) - (propagated-inputs - (list python-decorator python-six)) + (base32 "0qvpsx5kq746gixa7phxikkxmir3wy5dj94phg93mvhbq86mwjgi")))) + (build-system pyproject-build-system) + (arguments + (list #:test-flags #~(list "--pyargs" "gssapi"))) + (native-inputs + (list python-cython + python-k5test + python-parameterized + python-pytest + python-setuptools)) (inputs (list mit-krb5)) - ;; for tests - (native-inputs - (list python-parameterized python-k5test python-nose - python-cython)) + (propagated-inputs + (list python-decorator)) (home-page "https://github.com/pythongssapi/python-gssapi") (synopsis "Python GSSAPI Wrapper") (description |
