From a9a4d36c9038358111fd39ba7c78b72d09e915fb Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 20 Oct 2025 11:14:10 +0300 Subject: [PATCH] python3Packages.confuse: no with lib; in meta --- pkgs/development/python-modules/confuse/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/confuse/default.nix b/pkgs/development/python-modules/confuse/default.nix index 65b8f05bf219..161825e25aea 100644 --- a/pkgs/development/python-modules/confuse/default.nix +++ b/pkgs/development/python-modules/confuse/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "confuse" ]; - meta = with lib; { + meta = { description = "Python configuration library for Python that uses YAML"; homepage = "https://github.com/beetbox/confuse"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; }