From 0d8ce512f00eed8895556435d8318b2ca9b14618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai-Drosi=20C=C3=A2ju?= Date: Sun, 24 Sep 2023 16:08:06 +0300 Subject: [PATCH] python3Packages.gbinder-python: remove `with lib;` --- .../development/python-modules/gbinder-python/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/gbinder-python/default.nix b/pkgs/development/python-modules/gbinder-python/default.nix index 9d9b906e2443..c481c2be6de4 100644 --- a/pkgs/development/python-modules/gbinder-python/default.nix +++ b/pkgs/development/python-modules/gbinder-python/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { setupPyGlobalFlags = [ "--cython" ]; - meta = with lib; { + meta = { description = "Python bindings for libgbinder"; homepage = "https://github.com/erfanoabdi/gbinder-python"; - license = licenses.gpl3; - maintainers = with maintainers; [ mcaju ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mcaju ]; }; }