From 52478be8d7f337a98e68744198c1768a18ec8271 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 14 Jan 2026 16:50:19 +0100 Subject: [PATCH] python313Packages.pyexploitdb: migrate to finalAttrs --- pkgs/development/python-modules/pyexploitdb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index 01fd72e8cca4..da4c6f686c32 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -7,13 +7,13 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pyexploitdb"; version = "0.3.9"; pyproject = true; src = fetchPypi { - inherit pname version; + inherit (finalAttrs) pname version; hash = "sha256-ef4+I0xjYLfe4QPgfZNWLQB+0WAA4WUEn1W6uTSGkjU="; }; @@ -36,4 +36,4 @@ buildPythonPackage rec { license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ fab ]; }; -} +})