Set pyproject=true in buildPythonApplication

Fixes:
```
To build with setuptools as before, set `pyproject = true` and `build-system = [ setuptools ]
```
This commit is contained in:
Aleix Boné 2025-11-26 18:49:19 +01:00
parent 547d4f9315
commit bc74b7d42b
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View File

@ -1,9 +1,11 @@
{ python3Packages, lib }:
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication {
pname = "meteocat-exporter";
version = "1.0";
pyproject = true;
src = ./.;
doCheck = false;

View File

@ -1,9 +1,11 @@
{ python3Packages, lib }:
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication {
pname = "upc-qaire-exporter";
version = "1.0";
pyproject = true;
src = ./.;
doCheck = false;