biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / gst-python / default.nix
blobab476729c66faee4ad92db624c8c67f9fa975ea2
2   lib,
3   buildPythonPackage,
4   fetchurl,
5   meson,
6   ninja,
8   pkg-config,
9   python,
10   pygobject3,
11   gobject-introspection,
12   gst_all_1,
13   isPy3k,
16 buildPythonPackage rec {
17   pname = "gst-python";
18   version = "1.24.7";
20   format = "other";
22   outputs = [
23     "out"
24     "dev"
25   ];
27   src = fetchurl {
28     url = "https://gstreamer.freedesktop.org/src/gst-python/${pname}-${version}.tar.xz";
29     hash = "sha256-bD7gKyDICobiQkWwYQLa4A4BdobydAdib0TcA6w8pTo=";
30   };
32   # Python 2.x is not supported.
33   disabled = !isPy3k;
35   depsBuildBuild = [ pkg-config ];
37   nativeBuildInputs = [
38     meson
39     ninja
40     pkg-config
41     gobject-introspection
42     gst_all_1.gst-plugins-base
43   ];
45   propagatedBuildInputs = [
46     gst_all_1.gst-plugins-base
47     pygobject3
48   ];
50   mesonFlags = [
51     "-Dpygi-overrides-dir=${placeholder "out"}/${python.sitePackages}/gi/overrides"
52     # Exec format error during configure
53     "-Dpython=${python.pythonOnBuildForHost.interpreter}"
54   ];
56   doCheck = true;
58   # TODO: Meson setup hook does not like buildPythonPackage
59   # https://github.com/NixOS/nixpkgs/issues/47390
60   installCheckPhase = "meson test --print-errorlogs";
62   meta = with lib; {
63     homepage = "https://gstreamer.freedesktop.org";
64     description = "Python bindings for GStreamer";
65     license = licenses.lgpl2Plus;
66     maintainers = [ ];
67   };