Merge pull request #230791 from mweinelt/maxcube-api-disable-311

python311Packages.maxcube-api: disable
This commit is contained in:
Thiago Kenji Okada 2023-05-09 12:11:38 +01:00 committed by GitHub
commit 86ec0ce437
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, pythonAtLeast
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, unittestCheckHook , unittestCheckHook
@ -30,6 +31,8 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
# Tests indicate lack of 3.11 compatibility
broken = pythonAtLeast "3.11";
description = "eQ-3/ELV MAX! Cube Python API"; description = "eQ-3/ELV MAX! Cube Python API";
homepage = "https://github.com/hackercowboy/python-maxcube-api"; homepage = "https://github.com/hackercowboy/python-maxcube-api";
license = licenses.mit; license = licenses.mit;