python3Packages.av_13: disable automatic updates (#464378)

This commit is contained in:
Leona Maroni 2025-11-24 20:12:34 +00:00 committed by GitHub
commit c4793d1033
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "av";
version = "13.1.0";
version = "13.1.0"; # nixpkgs-update: no auto update
pyproject = true;
src = fetchFromGitHub {
@ -79,6 +79,8 @@ buildPythonPackage rec {
"av.video"
];
passthru.skipBulkUpdate = true;
meta = {
changelog = "https://github.com/PyAV-Org/PyAV/blob/${src.tag}/CHANGELOG.rst";
description = "Pythonic bindings for FFmpeg";