My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/gst-python/default.nix

47 lines
1.1 KiB

{ buildPythonPackage, fetchurl, stdenv, meson, ninja, pkgconfig, python, pygobject3
, gst-plugins-base, ncurses
}:
let
pname = "gst-python";
version = "1.14.4";
name = "${pname}-${version}";
in buildPythonPackage rec {
inherit pname version;
format = "other";
src = fetchurl {
urls = [
"${meta.homepage}/src/gst-python/${name}.tar.xz"
"mirror://gentoo/distfiles/${name}.tar.xz"
];
sha256 = "06ssx19fs6pg4d32p9ph9w4f0xwmxaw2dxfj17rqkn5njd7v5zfh";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ meson ninja pkgconfig python ];
# XXX: in the Libs.private field of python3.pc
buildInputs = [ ncurses ];
mesonFlags = [
"-Dpygi-overrides-dir=${python.sitePackages}/gi/overrides"
];
postPatch = ''
chmod +x scripts/pythondetector # patchShebangs requires executable file
patchShebangs scripts/pythondetector
'';
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
meta = {
homepage = https://gstreamer.freedesktop.org;
description = "Python bindings for GStreamer";
license = stdenv.lib.licenses.lgpl2Plus;
};
}