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

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

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, cython
, zlib
}:
@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "indexed_gzip";
version = "1.8.7";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,7 +19,7 @@ buildPythonPackage rec {
hash = "sha256-dryq1LLC+lVHj/i+m60ubGGItlX5/clCnwNGrexI92I=";
};
nativeBuildInputs = [ cython ];
nativeBuildInputs = [ cython setuptools ];
buildInputs = [ zlib ];