Merge pull request #162330 from r-ryantm/auto-update/python3.10-python-vlc

python310Packages.python-vlc: 3.0.12118 -> 3.0.16120
This commit is contained in:
Fabian Affolter
2022-03-01 11:20:46 +01:00
committed by GitHub
@@ -4,15 +4,19 @@
, setuptools
, libvlc
, substituteAll
, pythonOlder
}:
buildPythonPackage rec {
pname = "python-vlc";
version = "3.0.12118";
version = "3.0.16120";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Vm8vfDA/aACFHKzAFt8cbu7AlK1j4KSdh9udaYCU8fs=";
hash = "sha256-kvmP7giPcr1tBjs7MxLQvSmzfnrWXd6zpzAzIDAMKAc=";
};
patches = [
@@ -27,9 +31,12 @@ buildPythonPackage rec {
setuptools
];
doCheck = false; # no tests
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "vlc" ];
pythonImportsCheck = [
"vlc"
];
meta = with lib; {
description = "Python bindings for VLC, the cross-platform multimedia player and framework";