diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:06 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:16:27 +0100 |
| commit | 4c4dc6b2dfde82f947616d348717c7ff41ab63c5 (patch) | |
| tree | 4a277a302bb91790bd09c3ffc20eba26c9f8c151 /gnu/packages/python-xyz.scm | |
| parent | 04982414e249172b10c87203ad29b907ce67c1da (diff) | |
gnu: python-ncclient: Update to 0.6.19.
* gnu/packages/python-xyz.scm (python-ncclient): Update to 0.6.19.
[build-system]: Use pyproject.
[arguments] <phases>: Use default 'check.
[native-inputs]: Add python-setuptools, and python-wheel.
Change-Id: I72b436101c8c8703ec69ab18b04adc4df119a513
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ed155214ff..5a7d2204db 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4358,7 +4358,7 @@ to users of that module.") (define-public python-ncclient (package (name "python-ncclient") - (version "0.6.12") + (version "0.6.19") (source (origin (method git-fetch) ;no tests in PyPI release @@ -4368,18 +4368,15 @@ to users of that module.") (file-name (git-file-name name version)) (sha256 (base32 - "0cb568z5syg6hh0dv813bw7s1mjy7ga5xzxbm9naf4zz2qfdg4js")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest"))))))) + "0nmyj59k9zbdfhm7qhrq9gd4x6vhjdf18q1kwfgb2gwcb3b8nd2h")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools + python-wheel)) (propagated-inputs - (list python-lxml python-paramiko)) + (list python-lxml + python-paramiko)) (home-page "https://github.com/ncclient/ncclient") (synopsis "Python library for NETCONF clients") (description "@code{ncclient} is a Python library that facilitates |
