From 3b6066299d7cf89ebef7027e9d9e974cb24fd3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20S=C3=A1nchez=20Mu=C3=B1oz?= Date: Thu, 24 Jun 2021 11:29:08 +0200 Subject: [PATCH] pythonPackages.qscintilla-qt5: do not use `with pythonPackages;` --- pkgs/development/python-modules/qscintilla-qt5/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/qscintilla-qt5/default.nix b/pkgs/development/python-modules/qscintilla-qt5/default.nix index e188314d7fc9..70ee43089134 100644 --- a/pkgs/development/python-modules/qscintilla-qt5/default.nix +++ b/pkgs/development/python-modules/qscintilla-qt5/default.nix @@ -3,8 +3,10 @@ , qscintilla , qtbase }: -with pythonPackages; -buildPythonPackage rec { + +let + inherit (pythonPackages) buildPythonPackage isPy3k python sip_4 pyqt5; +in buildPythonPackage rec { pname = "qscintilla"; version = qscintilla.version; src = qscintilla.src;