We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e7edf commit 8d0d701Copy full SHA for 8d0d701
pkgs/development/python-modules/meinheld/default.nix
@@ -1,5 +1,7 @@
1
{
2
lib,
3
+ stdenv,
4
+ pythonAtLeast,
5
fetchPypi,
6
buildPythonPackage,
7
greenlet,
@@ -10,6 +12,8 @@ buildPythonPackage rec {
10
12
version = "1.0.2";
11
13
format = "setuptools";
14
15
+ disabled = pythonAtLeast "3.13";
16
+
17
src = fetchPypi {
18
inherit pname version;
19
sha256 = "008c76937ac2117cc69e032dc69cea9f85fc605de9bac1417f447c41c16a56d6";
@@ -21,6 +25,8 @@ buildPythonPackage rec {
21
25
substituteInPlace setup.py --replace "greenlet>=0.4.5,<0.5" "greenlet>=0.4.5"
22
26
'';
23
27
28
+ env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-Wno-error=implicit-function-declaration";
29
24
30
propagatedBuildInputs = [ greenlet ];
31
32
# No tests
0 commit comments