From 4bba637d53268c85818353919bb88258cfe3b4c3 Mon Sep 17 00:00:00 2001 From: Maximilian Knespel Date: Thu, 7 Mar 2024 10:14:03 +0100 Subject: [PATCH] python3Packages.indexed-gzip: Use pyproject instead of format argument --- pkgs/development/python-modules/indexed-gzip/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/indexed-gzip/default.nix b/pkgs/development/python-modules/indexed-gzip/default.nix index 7b0bf177bf19..a392ad07c9ce 100644 --- a/pkgs/development/python-modules/indexed-gzip/default.nix +++ b/pkgs/development/python-modules/indexed-gzip/default.nix @@ -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 ];