depot/third_party/nixpkgs/pkgs/development/python-modules/python-vlc/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

44 lines
896 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
libvlc,
substituteAll,
pythonOlder,
}:
buildPythonPackage rec {
pname = "python-vlc";
version = "3.0.20123";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-JE+7njkqAyaEH8qSbW0SoqNsVGmCGR9JPxSPoZ5msdQ=";
};
patches = [
# Patch path for VLC
(substituteAll {
src = ./vlc-paths.patch;
libvlcPath = "${libvlc}/lib/libvlc.so.5";
})
];
propagatedBuildInputs = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "vlc" ];
meta = with lib; {
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 ];
};
}