nixpkgs/pkgs/development/python-modules/gst-python/default.nix

44 lines
1,005 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, python, pygobject3
, gst-plugins-base, ncurses
}:
stdenv.mkDerivation rec {
pname = "gst-python";
2017-12-07 14:03:36 +01:00
version = "1.12.3";
name = "${pname}-${version}";
src = fetchurl {
urls = [
"${meta.homepage}/src/gst-python/${name}.tar.xz"
"mirror://gentoo/distfiles/${name}.tar.xz"
];
sha256 = "19rb06x2m7103zwfm0plxx95gb8bp01ng04h4q9k6ii9q7g2kxf3";
};
2014-03-22 15:19:44 +01:00
patches = [ ./different-path-with-pygobject.patch ];
outputs = [ "out" "dev" ];
2016-04-24 14:39:30 +02:00
nativeBuildInputs = [ pkgconfig python ];
# XXX: in the Libs.private field of python3.pc
buildInputs = [ ncurses ];
configureFlags = [
"--with-pygi-overrides-dir=$(out)/${python.sitePackages}/gi/overrides"
];
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
2014-08-12 22:18:25 +02:00
# Needed for python.buildEnv
passthru.pythonPath = [];
meta = {
2017-09-16 21:28:31 +02:00
homepage = https://gstreamer.freedesktop.org;
description = "Python bindings for GStreamer";
license = stdenv.lib.licenses.lgpl2Plus;
};
}