My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/meinheld/default.nix

28 lines
697 B

{ lib, fetchPypi, buildPythonPackage, greenlet }:
buildPythonPackage rec {
pname = "meinheld";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "008c76937ac2117cc69e032dc69cea9f85fc605de9bac1417f447c41c16a56d6";
};
patchPhase = ''
# Allow greenlet-1.0.0.
# 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"
'';
propagatedBuildInputs = [ greenlet ];
# No tests
doCheck = false;
meta = with lib; {
description = "High performance asynchronous Python WSGI Web Server";
homepage = "https://meinheld.org/";
license = licenses.bsd3;
};
}