diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-23 18:49:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 21:36:59 +0000 |
| commit | aa9a0c580cec08b5dc923626053ac9b472cb4e9f (patch) | |
| tree | 2269edb7cc96aa0585149438e62061331682108d /gnu/packages/python-web.scm | |
| parent | 9c686b3c5bbc0c118eae592ad5d67e74bc1ffe31 (diff) | |
gnu: python-random-user-agent: Switch to pyproject.
* gnu/packages/python-web.scm (python-random-user-agent):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: Idfb3cf77f5de4a24e79f8c463d6e72837fae568c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4be987aaa09..846cedd4372 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10630,9 +10630,10 @@ the Python transaction package.") (method url-fetch) (uri (pypi-uri "random_user_agent" version)) (sha256 - (base32 - "04nhzdh2ki7ybhjrmghxci6hcm6i03vvin2q2ynj87fbr1pa534g")))) - (build-system python-build-system) + (base32 "04nhzdh2ki7ybhjrmghxci6hcm6i03vvin2q2ynj87fbr1pa534g")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) (home-page "https://github.com/Luqman-Ud-Din/random_user_agent") (synopsis "List of user agents") (description |
