From 4415116f9e71c8044e79d1a5bf615ef2bac3820c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 15 May 2022 06:12:35 +0000 Subject: [PATCH] python3Packages.gst-python: use correct interpreter --- pkgs/development/python-modules/gst-python/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/gst-python/default.nix b/pkgs/development/python-modules/gst-python/default.nix index c02e3b593b8..e14223c1fd6 100644 --- a/pkgs/development/python-modules/gst-python/default.nix +++ b/pkgs/development/python-modules/gst-python/default.nix @@ -5,7 +5,7 @@ , ninja , pkg-config -, python3 +, python , pygobject3 , gobject-introspection , gst-plugins-base @@ -32,7 +32,7 @@ buildPythonPackage rec { meson ninja pkg-config - python3 + python gobject-introspection gst-plugins-base ]; @@ -43,7 +43,7 @@ buildPythonPackage rec { ]; mesonFlags = [ - "-Dpygi-overrides-dir=${placeholder "out"}/${python3.sitePackages}/gi/overrides" + "-Dpygi-overrides-dir=${placeholder "out"}/${python.sitePackages}/gi/overrides" ]; doCheck = true;