diff options
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 54d1965c2b..5f4c95442b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -40397,16 +40397,19 @@ way.") (package (name "python-zbarlight") (version "3.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "zbarlight" version)) - (sha256 - (base32 - "1v5c9bim8af6g8kgxp2dhm96n5vkr8sqi56w0bdh1xy49v03lw3g")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Polyconseil/zbarlight") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1radfpfhfhkx3xnz01bqr5l9pl2zv70zis6l2kw1gwqbfw65r6w6")))) (build-system pyproject-build-system) - (propagated-inputs (list python-pillow python-setuptools)) + (propagated-inputs (list python-pillow)) (inputs (list zbar)) - (native-inputs (list python-wheel)) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://github.com/Polyconseil/zbarlight") (synopsis "Simple Python wrapper for the zbar barcode library") (description "Zbarlight is a simple wrapper for the zbar library. It can |
