Merge pull request #121710 from fabaff/bump-python-vlc
python3Packages.python-vlc: 3.0.11115 -> 3.0.12118
This commit is contained in:
commit
735e1b2e3e
1 changed files with 11 additions and 8 deletions
|
@ -8,30 +8,33 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-vlc";
|
||||
version = "3.0.11115";
|
||||
version = "3.0.12118";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a4d3bdddfce84a8fb1b2d5447193a0239c55c16ca246e5194d48efd59c4e236b";
|
||||
hash = "sha256-Vm8vfDA/aACFHKzAFt8cbu7AlK1j4KSdh9udaYCU8fs=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Patch path for VLC
|
||||
(substituteAll {
|
||||
src = ./vlc-paths.patch;
|
||||
libvlcPath="${libvlc}/lib/libvlc.so.5";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
pythonImportsCheck = [ "vlc" ];
|
||||
|
||||
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";
|
||||
homepage = "https://wiki.videolan.org/PythonBinding";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ tbenst ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue