From 35f095b712a40b16cf9fb70816c4f475c4c135f6 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Wed, 8 May 2024 13:38:21 +0200 Subject: [PATCH] python3Packages.ziamath: refactor --- pkgs/development/python-modules/ziamath/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ziamath/default.nix b/pkgs/development/python-modules/ziamath/default.nix index 578cf6a32fdd..592e486edce1 100644 --- a/pkgs/development/python-modules/ziamath/default.nix +++ b/pkgs/development/python-modules/ziamath/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "ziamath"; version = "0.10"; - format = "pyproject"; + pyproject = true; disabled = pythonOlder "3.8"; @@ -23,11 +23,11 @@ buildPythonPackage rec { hash = "sha256-Drssi+YySh4OhVYAOvgIwzeeu5dQbUUXuhwTedhUUt8="; }; - nativeBuildInputs = [ + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ ziafont ];