a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
37 lines
864 B
Nix
37 lines
864 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
libev,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bjoern";
|
|
version = "3.2.1";
|
|
format = "setuptools";
|
|
|
|
# tests are not published to pypi anymore
|
|
src = fetchFromGitHub {
|
|
owner = "jonashaag";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-d7u/lEh2Zr5NYWYu4Zr7kgyeOIQuHQLYrZeiZMHbpio=";
|
|
fetchSubmodules = true; # fetch http-parser and statsd-c-client submodules
|
|
};
|
|
|
|
buildInputs = [ libev ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} tests/keep-alive-behaviour.py 2>/dev/null
|
|
${python.interpreter} tests/test_wsgi_compliance.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jonashaag/bjoern";
|
|
description = "Screamingly fast Python 2/3 WSGI server written in C";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ cmcdragonkai ];
|
|
};
|
|
}
|