From dec08bd1cc9226191a3b80b7e8bfed53d27c4692 Mon Sep 17 00:00:00 2001 From: Maximilian Knespel Date: Thu, 7 Mar 2024 10:14:35 +0100 Subject: [PATCH] python3Packages.indexed-bzip2: Use pyproject instead of format argument --- pkgs/development/python-modules/indexed-bzip2/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/indexed-bzip2/default.nix b/pkgs/development/python-modules/indexed-bzip2/default.nix index 53788b566e52..6da9cade830e 100644 --- a/pkgs/development/python-modules/indexed-bzip2/default.nix +++ b/pkgs/development/python-modules/indexed-bzip2/default.nix @@ -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;