python3Packages.python-vlc: 3.0.11115 -> 3.0.12118

This commit is contained in:
Fabian Affolter 2021-05-08 20:20:41 +02:00
parent 741ed21bea
commit 3b49d49bd2

View file

@ -8,30 +8,33 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-vlc"; pname = "python-vlc";
version = "3.0.11115"; version = "3.0.12118";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "a4d3bdddfce84a8fb1b2d5447193a0239c55c16ca246e5194d48efd59c4e236b"; hash = "sha256-Vm8vfDA/aACFHKzAFt8cbu7AlK1j4KSdh9udaYCU8fs=";
}; };
propagatedBuildInputs = [
setuptools
];
patches = [ patches = [
# Patch path for VLC
(substituteAll { (substituteAll {
src = ./vlc-paths.patch; src = ./vlc-paths.patch;
libvlcPath="${libvlc}/lib/libvlc.so.5"; libvlcPath="${libvlc}/lib/libvlc.so.5";
}) })
]; ];
propagatedBuildInputs = [
setuptools
];
doCheck = false; # no tests doCheck = false; # no tests
pythonImportsCheck = [ "vlc" ];
meta = with lib; { meta = with lib; {
homepage = "https://wiki.videolan.org/PythonBinding";
maintainers = with maintainers; [ tbenst ];
description = "Python bindings for VLC, the cross-platform multimedia player and framework"; description = "Python bindings for VLC, the cross-platform multimedia player and framework";
homepage = "https://wiki.videolan.org/PythonBinding";
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ tbenst ];
}; };
} }