python.pkgs.meinheld: init at 0.6.1
This commit is contained in:
parent
642788bd85
commit
04fe5bc440
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/meinheld/default.nix
Normal file
22
pkgs/development/python-modules/meinheld/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, greenlet }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "meinheld";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0rg5878njn66cc0x2fwrakikz24946r0cxxl6j8vvz5phd4zygi9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ greenlet ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "High performance asynchronous Python WSGI Web Server";
|
||||
homepage = http://meinheld.org/;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -10241,6 +10241,8 @@ in {
|
|||
|
||||
meliae = callPackage ../development/python-modules/meliae {};
|
||||
|
||||
meinheld = callPackage ../development/python-modules/meinheld { };
|
||||
|
||||
memcached = buildPythonPackage rec {
|
||||
name = "memcached-1.51";
|
||||
|
||||
|
|
Loading…
Reference in a new issue