nixpkgs/pkgs/development/python-modules/bjoern/default.nix

26 lines
683 B
Nix
Raw Normal View History

2018-08-24 08:02:10 +00:00
{ stdenv, buildPythonPackage, fetchPypi, libev, python }:
buildPythonPackage rec {
pname = "bjoern";
2019-12-19 19:31:06 +00:00
version = "3.1.0";
2018-08-24 08:02:10 +00:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:06 +00:00
sha256 = "01f3b601cf0ab0a9c7cb9c8f944ab7c738baaa6043ca82db20e9bd7a9be5767b";
2018-08-24 08:02:10 +00:00
};
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 ];
};
}