From 055fa741435012661074cc0d787c9f8d1aee53c8 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 17 May 2025 21:34:33 +0300 Subject: [PATCH] python312Packages.pysequoia: No with lib; in meta --- pkgs/development/python-modules/pysequoia/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pysequoia/default.nix b/pkgs/development/python-modules/pysequoia/default.nix index 19d911ccd807..1f3c231b564f 100644 --- a/pkgs/development/python-modules/pysequoia/default.nix +++ b/pkgs/development/python-modules/pysequoia/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysequoia" ]; - meta = with lib; { + meta = { description = "This library provides OpenPGP facilities in Python through the Sequoia PGP library"; downloadPage = "https://github.com/wiktor-k/pysequoia"; homepage = "https://github.com/wiktor-k/pysequoia"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; }; }