diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-02 23:04:58 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-02 23:05:04 +0100 |
| commit | cfb4b52f5138afca2c1ce6a5ca1b6e98288d9164 (patch) | |
| tree | 40cedf9f7ff8923debf67dd35ae353cad4c41d26 | |
| parent | 49f06dbee389a297ab10715abde1e716faff6696 (diff) | |
gnu: python-yapsy: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-yapsy)[build-system]: Switch to
pyproject-build-system.
[arguments] <test-backend>: Use 'unittest.
[native-inputs]: Add python-setuptools.
Change-Id: Ic19fe7af48db8eb73f6c456ec7f9f41d1fc2949d
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index de206508b4..824a6189d3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -37764,7 +37764,11 @@ PyRSS2Gen builds the feed up by using a XML generator.") (uri (pypi-uri "Yapsy" version)) (sha256 (base32 "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'unittest)) + (native-inputs + (list python-setuptools)) (home-page "https://yapsy.sourceforge.net") (synopsis "Simple plugin system for Python applications") (description "Yapsy, or Yet Another Plugin SYstem, is a small library |
