From 92bd7c04fb455caa195caeb39a3bb6415ba0f152 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Mon, 27 Oct 2025 10:49:11 +0100 Subject: [PATCH] gnu: Remove python-elevate. * gnu/packages/python-xyz.scm (python-elevate): Delete variable. Fixes: guix/guix#3027 Change-Id: Ibb21dda8df63ba48b1a396ca60e7b8ea4611e40a --- gnu/packages/python-xyz.scm | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6e0da3f07d4b83f70fadb4c836b6985b8f96f092..22a3120abfefe3313f1f7a9abb47cfbafa4f5d4f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8294,33 +8294,6 @@ important tasks for becoming a daemon process: ;; Only setup.py is gpl3+, everything else is apache 2.0 licensed. (license (list license:asl2.0 license:gpl3+)))) -;; XXX: See: . -(define-public python-elevate - (package - (name "python-elevate") - (version "0.1.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "elevate" version)) - (sha256 - (base32 "02g23lxzzl64j1b4fsnrdxqiahl9lnrqyxpqwcfzn0g33px1kbak")))) - (build-system pyproject-build-system) - (arguments - `(#:tests? #f ;no tests in PyPI - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'clean-up - (lambda _ - ;; Uses stuff we don't have. - (delete-file "elevate/windows.py")))))) - (native-inputs (list python-setuptools)) - (home-page "https://github.com/barneygale/elevate") - (synopsis "Python library for requesting root privileges") - (description "This package provides a Python library for requesting -root privileges.") - (license license:expat))) - (define-public python-annotated-types (package (name "python-annotated-types")