From 6eda86c02fa7108b63de26aa19212ea77bdd7730 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 23 Nov 2024 09:30:22 +0100 Subject: [PATCH] python312Packages.docstring-parser: refactor --- pkgs/development/python-modules/docstring-parser/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/docstring-parser/default.nix b/pkgs/development/python-modules/docstring-parser/default.nix index cd317a2c1f1f..bc3aad6444f9 100644 --- a/pkgs/development/python-modules/docstring-parser/default.nix +++ b/pkgs/development/python-modules/docstring-parser/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "docstring-parser"; version = "0.16"; - format = "pyproject"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { hash = "sha256-xwV+mgCOC/MyCqGELkJVqQ3p2g2yw/Ieomc7k0HMXms="; }; - nativeBuildInputs = [ poetry-core ]; + build-system = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ];