Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.livekit-protocol: add updateScript

+3
+3
pkgs/development/python-modules/livekit-protocol/default.nix
··· 4 fetchFromGitHub, 5 setuptools, 6 protobuf, 7 }: 8 9 buildPythonPackage rec { ··· 31 doCheck = false; # no tests 32 33 pythonImportsCheck = [ "livekit" ]; 34 35 meta = { 36 description = "LiveKit real-time and server SDKs for Python";
··· 4 fetchFromGitHub, 5 setuptools, 6 protobuf, 7 + gitUpdater, 8 }: 9 10 buildPythonPackage rec { ··· 32 doCheck = false; # no tests 33 34 pythonImportsCheck = [ "livekit" ]; 35 + 36 + passthru.updateScript = gitUpdater { rev-prefix = "protocol-v"; }; 37 38 meta = { 39 description = "LiveKit real-time and server SDKs for Python";