gnu: python-zstandard: Fix indentation.
* gnu/packages/python-compression.scm (python-zstandard): Fix indentation.master
parent
26d52476a0
commit
fe9a113bb4
|
@ -238,20 +238,20 @@ wrapper. It provides a backport of the @code{Path} object.")
|
||||||
|
|
||||||
(define-public python-zstandard
|
(define-public python-zstandard
|
||||||
(package
|
(package
|
||||||
(name "python-zstandard")
|
(name "python-zstandard")
|
||||||
(version "0.13.0")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "zstandard" version))
|
(uri (pypi-uri "zstandard" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0q9msi00s93iqm8vzd839r7yc51gz54z90h5bckqyjdxa6vxijz5"))))
|
(base32 "0q9msi00s93iqm8vzd839r7yc51gz54z90h5bckqyjdxa6vxijz5"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-hypothesis" ,python-hypothesis)))
|
`(("python-hypothesis" ,python-hypothesis)))
|
||||||
(home-page "https://github.com/indygreg/python-zstandard")
|
(home-page "https://github.com/indygreg/python-zstandard")
|
||||||
(synopsis "Zstandard bindings for Python")
|
(synopsis "Zstandard bindings for Python")
|
||||||
(description "This project provides Python bindings for interfacing
|
(description "This project provides Python bindings for interfacing with
|
||||||
with the Zstandard compression library. A C extension and CFFI
|
the Zstandard compression library. A C extension and CFFI interface are
|
||||||
interface are provided.")
|
provided.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
Reference in New Issue