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

This commit is contained in:
Maximilian Knespel 2024-03-07 10:14:35 +01:00 committed by mxmlnkn
parent bc24a81ee6
commit dec08bd1cc
1 changed files with 5 additions and 1 deletions

View File

@ -1,13 +1,15 @@
{ lib
, buildPythonPackage
, cython
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "indexed_bzip2";
version = "1.6.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -16,6 +18,8 @@ buildPythonPackage rec {
hash = "sha256-3HUiigZR91/nbOAMOuSHGcPtqkkEaj3VepyMhmKOHpI=";
};
nativeBuildInputs = [ cython setuptools ];
# has no tests
doCheck = false;