about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-05-15 07:40:58 +0100
committerGitHub <noreply@github.com>2022-05-15 07:40:58 +0100
commit85164f1bee3b6850fa9dc3206f8192880172001b (patch)
tree775350caccf14ab7a0198dc7c2ee518f13be9a06 /pkgs
parentd0b82caceea797bc27db6121dae0208e6b19b313 (diff)
parent4415116f9e71c8044e79d1a5bf615ef2bac3820c (diff)
Merge pull request #173103 from dotlambda/gst-python-interpreter
python3Packages.gst-python: use correct interpreter
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/gst-python/default.nix6
1 files 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 c02e3b593b82c..e14223c1fd6db 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;