From a4ad84dd16ad7aa2839533a0b43199a18e4ddc11 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Tue, 24 Mar 2026 14:01:34 +0100 Subject: [PATCH] gnu: Remove python-clyent. * gnu/packages/python-xyz.scm (python-clyent): Delete variable. Fixes: guix/guix#6576 Change-Id: Ide5181efa667434f6c8b1e47224f84d70e2b7b2a --- gnu/packages/python-xyz.scm | 38 ------------------------------------- 1 file changed, 38 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e688df4ef8..866b973d6b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5130,44 +5130,6 @@ module and then similar looking characters are removed.") and function call return values in a human-readable way.") (license license:asl2.0))) -(define-public python-clyent - (package - (name "python-clyent") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Anaconda-Platform/clyent") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vi9nkd4hnvycwwpz9xip1drc5zn7bdwff1pz3azmyvh8v4hsias")))) - (build-system pyproject-build-system) - (arguments - (list - #:test-backend #~'unittest - #:phases - #~(modify-phases %standard-phases - ;; Replace version manually because clyent uses - ;; versioneer, which requires git metadata. - (add-after 'unpack 'versioneer - (lambda _ - (invoke "versioneer" "install") - (substitute* "setup.py" - (("version=versioneer.get_version\\(),") - (string-append "version='" #$version "',")))))))) - (native-inputs - (list python-mock - python-setuptools - python-versioneer)) - (home-page "https://github.com/Anaconda-Platform/clyent") - (synopsis "Command line client library") - (description - "Clyent is a Python command line utility library. It is used by -@code{binstar}, @code{binstar-build}, and @code{chalmers}.") - (license license:bsd-3))) - (define-public python-babel (package (name "python-babel")