python3Packages.rapidgzip: Use pyproject instead of format argument

This commit is contained in:
Maximilian Knespel 2024-03-07 10:15:03 +01:00 committed by mxmlnkn
parent 6e5dae816f
commit a6effe02a1
1 changed files with 4 additions and 2 deletions

View File

@ -1,14 +1,16 @@
{ lib
, buildPythonPackage
, cython
, fetchPypi
, pythonOlder
, setuptools
, nasm
}:
buildPythonPackage rec {
pname = "rapidgzip";
version = "0.13.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -17,7 +19,7 @@ buildPythonPackage rec {
hash = "sha256-MwT4+wzlNXfDLT/o/oT1iy9cVlFIIXc18r7dg+x5SXY=";
};
nativeBuildInputs = [ nasm ];
nativeBuildInputs = [ cython nasm setuptools ];
# has no tests
doCheck = false;