lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit 608915c16da39f1df8d67381a7dbb344c2293e51
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Thu Dec 30 09:54:04 2021 +0100
gnu: python-lzo: Remove deprecated argument and add test input.
* gnu/packages/python-compression.scm (python-lzo)[arguments]: Remove
#:test-target.
[native-inputs]: Add python-nose.
---
gnu/packages/python-compression.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-compression.scm
b/gnu/packages/python-compression.scm
index b6ab4ae02c..0bd846e5f1 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -202,8 +202,7 @@ Python.")
"0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p"))))
(build-system python-build-system)
(arguments
- `(#:test-target "check"
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-setuppy
(lambda _
@@ -216,6 +215,7 @@ Python.")
#t)))))
(inputs
(list lzo))
+ (native-inputs (list python-nose))
(home-page "https://github.com/jd-boyd/python-lzo")
(synopsis "Python bindings for the LZO data compression library")
(description