From 0177eb8634709d709aecae3784554ea4f6cad431 Mon Sep 17 00:00:00 2001 From: nicoo Date: Tue, 10 Jun 2025 13:20:27 +0000 Subject: [PATCH] memtree: bring up to current Python packaging conventions --- pkgs/by-name/me/memtree/package.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/me/memtree/package.nix b/pkgs/by-name/me/memtree/package.nix index cac70bde8c6d..a765976f2f3e 100644 --- a/pkgs/by-name/me/memtree/package.nix +++ b/pkgs/by-name/me/memtree/package.nix @@ -17,13 +17,11 @@ python3Packages.buildPythonApplication { hash = "sha256-gUULox3QSx68x8lb1ytanY36cw/I9L4HdpR8OPOsxuc="; }; - pythonRelaxDeps = [ "rich" ]; - - nativeBuildInputs = with python3Packages; [ + build-system = with python3Packages; [ poetry-core ]; - propagatedBuildInputs = with python3Packages; [ + dependencies = with python3Packages; [ rich ];