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
This commit is contained in:
Sharlatan Hellseher 2025-08-05 13:08:31 +01:00
parent 6ba2d68fbb
commit 2304addc10
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -12186,17 +12186,20 @@ Python's distutils.")
(define-public python-olefile (define-public python-olefile
(package (package
(name "python-olefile") (name "python-olefile")
(version "0.46") (version "0.47")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/decalage2/olefile/releases/" (uri (git-reference
"download/v" version "/olefile-" version ".tar.gz")) (url "https://github.com/decalage2/olefile")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1ardfp32jgijha6vk7znvnpwgi710c6gj02lk4drv45xj4mw71hv"))))
"1kjxh4gr651hpqkjfv89cfzr40hyvf3vjlda7mifiail83j7j07m")))) (build-system pyproject-build-system)
(build-system python-build-system) (native-inputs
(list python-pytest
python-setuptools))
(home-page "https://www.decalage.info/python/olefileio") (home-page "https://www.decalage.info/python/olefileio")
(synopsis "Read and write Microsoft OLE2 files") (synopsis "Read and write Microsoft OLE2 files")
(description (description