python313Packages.brotli: use pep517 builder

This commit is contained in:
Martin Weinelt
2025-05-23 08:37:25 -07:00
committed by Robert Schütz
parent ff32a6bd01
commit 9a84aaa850
@@ -3,12 +3,13 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "brotli";
version = "1.1.0";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "google";
@@ -19,6 +20,8 @@ buildPythonPackage rec {
forceFetchGit = true;
};
build-system = [ setuptools ];
# only returns information how to really build
dontConfigure = true;