From 24b2c113c237951d7dddcbeb208a678e847f0247 Mon Sep 17 00:00:00 2001 From: marius david Date: Sat, 27 Aug 2022 11:39:34 +0200 Subject: [PATCH] =?UTF-8?q?pythonPackages.gbulb,=20pythonPackages.pygtkspe?= =?UTF-8?q?llcheck:=20fix=20SkyTemple=E2=80=99s=20dependancies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/python-modules/gbulb/default.nix | 2 +- pkgs/development/python-modules/pygtkspellcheck/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/gbulb/default.nix b/pkgs/development/python-modules/gbulb/default.nix index a13dc09262fd..cb6acd3165fc 100644 --- a/pkgs/development/python-modules/gbulb/default.nix +++ b/pkgs/development/python-modules/gbulb/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ pygobject3 + gtk3 ]; checkInputs = [ pytestCheckHook - gtk3 gobject-introspection ]; diff --git a/pkgs/development/python-modules/pygtkspellcheck/default.nix b/pkgs/development/python-modules/pygtkspellcheck/default.nix index a22436ba6273..07dfb52c2d21 100644 --- a/pkgs/development/python-modules/pygtkspellcheck/default.nix +++ b/pkgs/development/python-modules/pygtkspellcheck/default.nix @@ -9,8 +9,8 @@ buildPythonPackage rec { sha256 = "sha256-kfhoOLnKbA9jH4DUtQw0nATjK21pMNxyAOzYDLQkR4U="; }; - nativeBuildInputs = [ gobject-introspection gtk3 ]; - propagatedBuildInputs = [ pyenchant pygobject3 ]; + nativeBuildInputs = [ gobject-introspection ]; + propagatedBuildInputs = [ pyenchant pygobject3 gtk3 ]; doCheck = false; # there are no tests pythonImportsCheck = [ "gtkspellcheck" ];