diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-22 07:53:14 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-22 08:37:26 +0100 |
commit | 868325560eeb622839fcaa0e1ef28ea64b8fe0e2 (patch) | |
tree | 24987b40eb6b4b05c5d11e0b5fd2369d5035725e /gnu/packages/python-xyz.scm | |
parent | 38f80083599caf8c821b56b20e861c62af2eb5d6 (diff) | |
download | guix-868325560eeb622839fcaa0e1ef28ea64b8fe0e2.tar.gz guix-868325560eeb622839fcaa0e1ef28ea64b8fe0e2.zip |
gnu: Remove python-enum34.
This compatibility package fails to build and has no users in Guix.
* gnu/packages/python-xyz.scm (python-enum34): Remove variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1a50100f5e..4f20396a75 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3140,25 +3140,6 @@ system is highly configurable via command line options and embedded commands.") (license license:lgpl2.1+))) -(define-public python-enum34 - (package - (name "python-enum34") - (version "1.1.6") - (source - (origin - (method url-fetch) - (uri (pypi-uri "enum34" version)) - (sha256 - (base32 - "1cgm5ng2gcfrkrm3hc22brl6chdmv67b9zvva9sfs7gn7dwc9n4a")))) - (build-system python-build-system) - (home-page "https://pypi.org/project/enum34/") - (synopsis "Backported Python 3.4 Enum") - (description - "Enum34 is the new Python stdlib enum module available in Python 3.4 -backported for previous versions of Python from 2.4 to 3.3.") - (license license:bsd-3))) - (define-public python-parse-type (package (name "python-parse-type") |