diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-10 16:03:40 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:33 +0200 |
commit | 168154c6b69e0ba8cdf53e2c7f5f9e99d9639d31 (patch) | |
tree | f95fcc07a49963ee9c0aa06079515925f5521a8d | |
parent | b25672f156157b0fe413ecbe59203a695c0376d8 (diff) | |
download | guix-168154c6b69e0ba8cdf53e2c7f5f9e99d9639d31.tar.gz guix-168154c6b69e0ba8cdf53e2c7f5f9e99d9639d31.zip |
gnu: Remove python-caniusepython3.
It's a leaf package without users in Guix, failed to build and
archived upstream 4 years ago: "This repository was archived by the
owner on Jan 2, 2021. It is now read-only."
* gnu/packages/python-xyz.scm (python-caniusepython3): Delete variable.
Change-Id: I45ccdfb92dee71d5b7d65e7c7bd0736f305e1d4c
-rw-r--r-- | gnu/packages/python-xyz.scm | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3179cf69a3..ae4d28dc86 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4727,43 +4727,6 @@ Pythonic interface. It is mainly targeted for testing and automation tasks rather than a standard compliant master implementation.") (license license:expat))) -(define-public python-caniusepython3 - (package - (name "python-caniusepython3") - (version "7.2.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "caniusepython3" version)) - (sha256 - (base32 - "0a755444ln38j8d7xb3yw0wzpd0mjrzfn6zqvsh06nw1vdaq4l28")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'relax-requirements - (lambda _ - (substitute* "setup.py" - ;; These are for compatibility with Python 2. - ((".*'argparse', 'backports.functools_lru_cache',.*") - "")) - (substitute* "dev_requirements.txt" - ((".*pylint.*") "")) ;not actually required - #t)) - (replace 'check - (lambda _ - (invoke "py.test" "-k" "not NetworkTests")))))) - (propagated-inputs - (list python-distlib python-packaging python-requests)) - (native-inputs - (list python-mock python-pytest)) - (home-page "https://github.com/brettcannon/caniusepython3") - (synopsis "Check for Python 3-incompatible Python libraries") - (description "The @command{caniusepython3} command scans your project and -reports the Python 3-incompatible libraries it found. It can also be used as -a library.") - (license license:asl2.0))) - (define-public python-diskcache (package (name "python-diskcache") |