diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-13 13:50:14 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:54:09 -0400 |
commit | 0b478a5d701f4794e46794967055d9e11c8bdfb2 (patch) | |
tree | ed9efec1434030a2ac19714e72fda942f022ad96 /gnu/packages/lirc.scm | |
parent | fdf967e8fe0f4393d1788d0e103c6eb78d2aec86 (diff) |
gnu: Remove python2-lirc.
* gnu/packages/lirc.scm (python2-lirc): Delete variable.
(python-lirc)[properties]: Delete field.
Diffstat (limited to 'gnu/packages/lirc.scm')
-rw-r--r-- | gnu/packages/lirc.scm | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gnu/packages/lirc.scm b/gnu/packages/lirc.scm index 1b8e8e37bd..5c89e83d7c 100644 --- a/gnu/packages/lirc.scm +++ b/gnu/packages/lirc.scm @@ -133,17 +133,4 @@ on just one button press.") (home-page "https://github.com/tompreston/python-lirc") (synopsis "Python bindings for LIRC") (description "@code{lirc} is a Python module which provides LIRC bindings.") - (license license:gpl3) - (properties `((python2-variant . ,(delay python2-lirc))))))) - - (define-public python2-lirc - (let ((base (package-with-python2 (strip-python2-variant python-lirc)))) - (package/inherit base - (arguments - `(#:tests? #f ; the only tests that exist are human-interactive - #:phases - (modify-phases %standard-phases - (add-before 'build 'build-from-cython-files - (lambda _ (invoke "make" "py2")))))) - (native-inputs - `(("python2-cython" ,python2-cython)))))) + (license license:gpl3)))) |