1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Remove python-clyent.

* gnu/packages/python-xyz.scm (python-clyent): Delete variable.

Fixes: guix/guix#6576
Change-Id: Ide5181efa667434f6c8b1e47224f84d70e2b7b2a
This commit is contained in:
Andreas Enge
2026-03-24 14:01:34 +01:00
parent c78195cf21
commit a4ad84dd16

View File

@@ -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")