python3Packages.meinheld: Relax greenlet constraint

This commit is contained in:
Martin Weinelt 2023-01-02 18:42:25 +01:00
parent eb46de5e35
commit 15c22385d9

View file

@ -12,7 +12,7 @@ buildPythonPackage rec {
patchPhase = '' patchPhase = ''
# Allow greenlet-1.0.0. # Allow greenlet-1.0.0.
# See https://github.com/mopemope/meinheld/pull/123 # See https://github.com/mopemope/meinheld/pull/123
substituteInPlace setup.py --replace "greenlet>=0.4.5,<0.5" "greenlet>=0.4.5,<2.0.0" substituteInPlace setup.py --replace "greenlet>=0.4.5,<0.5" "greenlet>=0.4.5"
''; '';
propagatedBuildInputs = [ greenlet ]; propagatedBuildInputs = [ greenlet ];
@ -20,6 +20,10 @@ buildPythonPackage rec {
# No tests # No tests
doCheck = false; doCheck = false;
pythonImportsCheck = [
"meinheld"
];
meta = with lib; { meta = with lib; {
description = "High performance asynchronous Python WSGI Web Server"; description = "High performance asynchronous Python WSGI Web Server";
homepage = "https://meinheld.org/"; homepage = "https://meinheld.org/";