Merge pull request #220438 from r-ryantm/auto-update/python310Packages.pymumble

python310Packages.pymumble: 1.6.1 -> 1.7
This commit is contained in:
Fabian Affolter 2023-03-10 11:43:13 +01:00 committed by GitHub
commit 20801cdc69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,23 +1,26 @@
{ buildPythonPackage { lib
, buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, isPy27 , isPy27
, lib
, opuslib , opuslib
, protobuf , protobuf
, pytestCheckHook , pytestCheckHook
, pycrypto , pycrypto
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pymumble"; pname = "pymumble";
version = "1.6.1"; version = "1.7";
disabled = isPy27; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "azlux"; owner = "azlux";
repo = "pymumble"; repo = "pymumble";
rev = version; rev = "refs/tags/${version}";
sha256 = "1qbsd2zvwd9ksclgiyrl1z79ms0zximm4527mnmhvq36lykgki7s"; hash = "sha256-NMp1yZ+R9vmne7old7z9UvcxSi6C044g68ZQsofT0gA=";
}; };
postPatch = '' postPatch = ''
@ -42,8 +45,9 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
description = "Python 3 version of pymumble, Mumble library used for multiple uses like making mumble bot."; description = "Library to create mumble bots";
homepage = "https://github.com/azlux/pymumble"; homepage = "https://github.com/azlux/pymumble";
changelog = "https://github.com/azlux/pymumble/releases/tag/${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ thelegy infinisil ]; maintainers = with maintainers; [ thelegy infinisil ];
}; };