python311Packages.sip_4: disable
This commit is contained in:
parent
44ac1cbea8
commit
3a2f536e74
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue