Unverified Commit 2dac2163 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.pymumble: disable on unsupported Python releases

parent e26618d5
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
{ 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";