diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-12-14 17:32:58 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-12-17 11:20:19 +0100 |
| commit | a87435ee5848dad29cd7852784aab77b071fcd4c (patch) | |
| tree | deecd2dc0311aeb0a7a963dff0b7d8793f8f45fa /gnu/packages/python-web.scm | |
| parent | 863641c83b359a54e476b4a889ffa0e94667308b (diff) | |
gnu: python-azure-common: Switch to pyproject-build-system.
* gnu/packages/python-web.scm (python-azure-common): Switch to
pyproject-build-system.
[arguments]<#:tests?>: Set to #f.
[native-inputs]: Add python-setuptools.
Change-Id: Ife71af09e889c7e7931adca87d8bbd9887ad465e
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 7efaa11f3d6..9fa92e34340 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -11574,9 +11574,11 @@ communicate with Microsoft Azure Storage services.") (uri (pypi-uri "azure-common" version ".zip")) (sha256 (base32 "18q4cy1xl2zly3rk7a1sc14w932x59r8c9j4d8dnlsz32hrcvh2a")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI archive (propagated-inputs (list python-azure-nspkg)) - (native-inputs (list unzip)) + (native-inputs (list python-setuptools unzip)) (home-page "https://github.com/Azure/azure-sdk-for-python") (synopsis "Microsoft Azure Client library for Python") (description "This package provides the Microsoft Azure Client library for |
