python310Packages.pymumble: disable on unsupported Python releases
This commit is contained in:
parent
e26618d5f1
commit
2dac216319
1 changed files with 6 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue