nixpkgs/pkgs/development/python-modules/bjoern/default.nix
2018-09-18 18:51:51 +02:00

26 lines
671 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, libev, python }:
buildPythonPackage rec {
pname = "bjoern";
version = "2.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1w5z9agacci4shmkg9gh46ifj2a724rrgbykdv14830f7jq3dcmi";
};
buildInputs = [ libev ];
checkPhase = ''
${python.interpreter} tests/keep-alive-behaviour.py 2>/dev/null
${python.interpreter} tests/test_wsgi_compliance.py
'';
meta = with stdenv.lib; {
homepage = https://github.com/jonashaag/bjoern;
description = "A screamingly fast Python 2/3 WSGI server written in C";
license = licenses.bsd2;
maintainers = with maintainers; [ cmcdragonkai ];
};
}