diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-21 16:48:53 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-21 23:27:33 -0300 |
| commit | 955065efc14fa41846891d4096c571474e2356cc (patch) | |
| tree | 0ca2a9c67dbbadb1de80d1c1f25200fd30bd631e | |
| parent | baa981f26245ce2e1c6c5cdcab1ab8509ec27a90 (diff) | |
gnu: python-qtsass: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-qtsass)[build-system]: Use
pyproject-build-system.
[arguments]: Remove '#:test-target'. Delete the
'make-git-checkout-writable' phase.
[native-inputs]: Remove python-pytest-cov, python-pytest-runner. Add
python-setuptools, python-wheel.
Change-Id: Iddcb7044eeee4fe20e0798be35110b1e1428cd05
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4358247dee..4966b7ba5c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35113,18 +35113,9 @@ applications and daemons.") (file-name (git-file-name name version)) (sha256 (base32 "1skdihfby2f41zxgwa5zv44vdxjrw301rh88rjmzj4xbdlix6cig")))) - (build-system python-build-system) - (arguments - `(#:test-target "pytest" - #:phases - (modify-phases %standard-phases - ;; Tests need to read and write files. - (add-before 'check 'make-git-checkout-writable - (lambda _ - (for-each make-file-writable (find-files ".")) - #t))))) + (build-system pyproject-build-system) (native-inputs - (list python-flaky python-pytest python-pytest-cov python-pytest-runner)) + (list python-flaky python-pytest python-setuptools python-wheel)) (propagated-inputs (list python-libsass)) (home-page "https://github.com/spyder-ide/qtsass") |
