Merge pull request #311591 from r-ryantm/auto-update/python311Packages.rtsp-to-webrtc

python311Packages.rtsp-to-webrtc: 0.5.1 -> 0.6.1
This commit is contained in:
Fabian Affolter 2024-05-14 11:13:05 +02:00 committed by GitHub
commit 9aff4fe6eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,42 +1,43 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pytest-aiohttp,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "rtsp-to-webrtc";
version = "0.5.1";
format = "setuptools";
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "allenporter";
repo = "rtsp-to-webrtc-client";
rev = version;
hash = "sha256-miMBN/8IO4v03mMoclCa3GFl6HCS3Sh6z2HOQ39MRZY=";
rev = "refs/tags/${version}";
hash = "sha256-D022d2CDKtHTuvEGo8GkOGWHi5sV4g6UwNB9xS2xxIs=";
};
propagatedBuildInputs = [
aiohttp
];
build-system = [ setuptools ];
dependencies = [ aiohttp ];
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [
"rtsp_to_webrtc"
];
pythonImportsCheck = [ "rtsp_to_webrtc" ];
meta = with lib; {
description = "Module for RTSPtoWeb and RTSPtoWebRTC";
homepage = "https://github.com/allenporter/rtsp-to-webrtc-client";
changelog = "https://github.com/allenporter/rtsp-to-webrtc-client/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};