gnu: python-lzo: Update to 1.14.

* gnu/packages/python-compression.scm (python-lzo): Update to 1.14.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2022-08-21 02:00:01 +02:00
parent b5c07581c4
commit 504e060126
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -195,14 +195,13 @@ (define-public python-py7zr
(define-public python-lzo
(package
(name "python-lzo")
(version "1.12")
(version "1.14")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-lzo" version))
(sha256
(base32
"0iakqgd51n1cd7r3lpdylm2rgbmd16y74cra9kcapwg84mlf9a4p"))))
(base32 "0315nq6r39n51n8qqamb7xv0ib0qrh76q7g3a1977172mbndijw3"))))
(build-system python-build-system)
(arguments
`(#:test-target "check"
@ -215,8 +214,7 @@ (define-public python-lzo
(string-append "include_dirs.append('"
(assoc-ref %build-inputs "lzo")
"/include/lzo"
"')")))
#t)))))
"')"))))))))
(inputs
(list lzo))
(home-page "https://github.com/jd-boyd/python-lzo")