diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 11:56:01 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-03 15:13:34 +0100 |
| commit | 54bda62491bce20983a069dbd6257ddcfaf65b0a (patch) | |
| tree | a62e2e0f4b5d1d2eacbafd93e0348170081c42d6 /gnu/packages/python-compression.scm | |
| parent | 355547af0354d1b4fed416cd7bb797b777233ab7 (diff) | |
gnu: python-bcj-cffi: Update to 0.5.1.
* gnu/packages/python-compression.scm (python-bcj-cffi): Update to 0.5.1.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove python-toml and python-setuptools-scm.
[native-inputs]: Remove python-coverage; add python-setuptools-scm.
Change-Id: I5ce6eb2139ceacf845314f63f2c49915f4d3e568
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index f58b15525b..6791a76cb9 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -357,23 +357,25 @@ filter for executable binaries. pybcj provides Python bindings to a BCJ implementation in C.") (license license:lgpl2.1+))) +;; XXX: Project is archived and not maintained since 2021. (define-public python-bcj-cffi (package (name "python-bcj-cffi") - (version "0.5.0") + (version "0.5.1") (source (origin (method url-fetch) (uri (pypi-uri "bcj-cffi" version)) (sha256 - (base32 - "1jcczrb8zgg6w7v76w1wpz3nw75fghk3xwxkn09ll7kck7sdf68d")))) - (build-system python-build-system) - (propagated-inputs - (list python-cffi python-toml python-setuptools-scm)) + (base32 "1k6h9x8j65hssbgmvhl71sdjj9aq8d81drdibrdflaz7a895sjib")))) + (build-system pyproject-build-system) (native-inputs - (list python-setuptools python-coverage python-pytest - python-pytest-cov)) + (list python-pytest + python-pytest-cov + python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list python-cffi)) (home-page "https://github.com/miurahr/bcj-cffi") (synopsis "Branch / Call /Jump CFFI library in Python") (description "This package provides an implementation of the Branch / Call / |
