python311Packages.sip_4: disable

This commit is contained in:
Robert Schütz
2023-02-27 20:54:10 -08:00
committed by Robert Schütz
parent 44ac1cbea8
commit 3a2f536e74
+2 -2
View File
@@ -1,11 +1,11 @@
{ lib, fetchurl, buildPythonPackage, python, isPyPy, sip-module ? "sip" }:
{ lib, fetchurl, buildPythonPackage, python, isPyPy, pythonAtLeast, sip-module ? "sip" }:
buildPythonPackage rec {
pname = sip-module;
version = "4.19.25";
format = "other";
disabled = isPyPy;
disabled = isPyPy || pythonAtLeast "3.11";
src = fetchurl {
url = "https://www.riverbankcomputing.com/static/Downloads/sip/${version}/sip-${version}.tar.gz";