diffoscope: convert to pyproject = true (#428911)

This commit is contained in:
Sandro 2025-07-29 14:04:40 +02:00 committed by GitHub
commit 8396333ef1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ in
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
pname = "diffoscope"; pname = "diffoscope";
version = "302"; version = "302";
format = "setuptools"; pyproject = true;
src = fetchurl { src = fetchurl {
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
@ -135,6 +135,8 @@ python.pkgs.buildPythonApplication rec {
installShellFiles installShellFiles
]; ];
build-system = with python.pkgs; [ setuptools ];
# Most of the non-Python dependencies here are optional command-line tools for various file-format parsers. # Most of the non-Python dependencies here are optional command-line tools for various file-format parsers.
# To help figuring out what's missing from the list, run: ./pkgs/tools/misc/diffoscope/list-missing-tools.sh # To help figuring out what's missing from the list, run: ./pkgs/tools/misc/diffoscope/list-missing-tools.sh
# #