python3Packages.indexed-zstd: Use pyproject instead of format argument

This commit is contained in:
Maximilian Knespel 2024-03-07 10:10:14 +01:00 committed by mxmlnkn
parent 8b5f61b6c4
commit 6f371a5b7d
1 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, cython
, zstd
}:
@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "indexed_zstd";
version = "1.6.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -18,7 +19,7 @@ buildPythonPackage rec {
hash = "sha256-icCerrv6ihBjSTS4Fsw7qhoA5ha8yegfMVRiIOhTvvY=";
};
nativeBuildInputs = [ cython ];
nativeBuildInputs = [ cython setuptools ];
buildInputs = [ zstd.dev ];