python310Packages.pymumble: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-03-10 09:30:31 +01:00 committed by GitHub
parent e26618d5f1
commit 2dac216319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,20 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, lib
, opuslib
, protobuf
, pytestCheckHook
, pycrypto
, pythonOlder
}:
buildPythonPackage rec {
pname = "pymumble";
version = "1.7";
disabled = isPy27;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "azlux";