mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python310Packages.pymumble: disable on unsupported Python releases
This commit is contained in:
parent
e26618d5f1
commit
2dac216319
@ -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 New Issue
Block a user