diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-05 13:08:31 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:53 +0100 |
| commit | 254fdd04b9af0678a579eda8561955919a1cb22f (patch) | |
| tree | 643fddc5ad3eee2a5e127448fe1e29d0ec20535e /gnu/packages/python-xyz.scm | |
| parent | 50caf2b5e3a458b34d4a7221670506b4547e2da8 (diff) | |
gnu: python-olefile: Update to 0.47.
* gnu/packages/python-xyz.scm (python-olefile): Update to 0.47.
[source]: Switch to git-fetch.
[build-system]: Use pypproject.
[native-inputs]: Add python-pytest and python-setuptools.
Change-Id: Ia74e58310f6810a888b7d20b44aed2bfa0a6e2c7
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 d306d6d687..e26479319d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12162,17 +12162,20 @@ Python's distutils.") (define-public python-olefile (package (name "python-olefile") - (version "0.46") + (version "0.47") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/decalage2/olefile/releases/" - "download/v" version "/olefile-" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/decalage2/olefile") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1kjxh4gr651hpqkjfv89cfzr40hyvf3vjlda7mifiail83j7j07m")))) - (build-system python-build-system) + (base32 "1ardfp32jgijha6vk7znvnpwgi710c6gj02lk4drv45xj4mw71hv")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) (home-page "https://www.decalage.info/python/olefileio") (synopsis "Read and write Microsoft OLE2 files") (description |
