From 8962fff412e7f71904a195715fa8bab892a3a245 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Jul 2026 23:51:54 +0200 Subject: [PATCH] python3Packages.yaswfp: modernize --- pkgs/development/python-modules/yaswfp/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/yaswfp/default.nix b/pkgs/development/python-modules/yaswfp/default.nix index f0c7998a453f..6ed211dd9a0b 100644 --- a/pkgs/development/python-modules/yaswfp/default.nix +++ b/pkgs/development/python-modules/yaswfp/default.nix @@ -6,9 +6,9 @@ pytestCheckHook, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "yaswfp"; - version = "unstable-20210331"; + version = "0.9.3-unstable-20210331"; pyproject = true; __structuredAttrs = true; @@ -28,9 +28,9 @@ buildPythonPackage { meta = { description = "Python SWF Parser"; - mainProgram = "swfparser"; homepage = "https://github.com/facundobatista/yaswfp"; - license = with lib.licenses; [ gpl3Only ]; + license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; + mainProgram = "swfparser"; }; -} +})