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