diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-29 17:40:44 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:52:41 -0400 |
commit | c3f1148cf28b474b601e83b4d01ff888090c1450 (patch) | |
tree | 980854ac74c96bbe1e907f211bde4fc2ced05db0 /gnu/packages | |
parent | 66fc746068bc92bf992f30688f34144370b727bc (diff) |
gnu: Remove python2-enum.
* gnu/packages/python-xyz.scm (python2-enum): Delete variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 80974120a8..ebfc812067 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3016,28 +3016,6 @@ bug tracker.") (home-page "http://www.liquidx.net/pybugz/") (license license:gpl2))) -(define-public python2-enum - (package - (name "python2-enum") - (version "0.4.6") - (source (origin - (method url-fetch) - (uri (pypi-uri "enum" version)) - (sha256 - (base32 - "13lk3yrwj42vl30kw3c194f739nrfrdg64s6i0v2p636n4k8brsl")))) - (build-system python-build-system) - (arguments - `(#:python ,python-2)) - (home-page "https://pypi.org/project/enum/") - (synopsis "Robust enumerated type support in Python") - (description - "This provides a module for robust enumerations in Python. It has -been superseded by the Python standard library and is provided only for -compatibility.") - ;; Choice of either license. - (license (list license:gpl3+ license:psfl)))) - (define-public python-enum34 (package (name "python-enum34") |