From 53e69b1fee2541648eed3c78efec89969b9a7fb5 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sat, 14 Jun 2025 20:32:39 +0900 Subject: [PATCH] python3Packages.cogapp: refactor --- pkgs/development/python-modules/cogapp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/cogapp/default.nix b/pkgs/development/python-modules/cogapp/default.nix index befccc220486..85df789bd9e5 100644 --- a/pkgs/development/python-modules/cogapp/default.nix +++ b/pkgs/development/python-modules/cogapp/default.nix @@ -15,15 +15,15 @@ buildPythonPackage rec { hash = "sha256-8ZDEoPBLs4kyCmaLxxsTsLiGwKoc+o56lb1++RLg47E="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; # there are no tests doCheck = false; - meta = with lib; { + meta = { description = "Code generator for executing Python snippets in source files"; homepage = "https://nedbatchelder.com/code/cog"; - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; }; }