mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
exceptiongroup,
|
|
h11,
|
|
h2,
|
|
priority,
|
|
wsproto,
|
|
poetry-core,
|
|
pytest-asyncio,
|
|
pytest-trio,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypercorn";
|
|
version = "0.16.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.11"; # missing taskgroup dependency
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgjones";
|
|
repo = "Hypercorn";
|
|
rev = version;
|
|
hash = "sha256-pIUZCQmC3c6FiV0iMMwJGs9TMi6B/YM+vaSx//sAmKE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/^addopts/d" pyproject.toml
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
exceptiongroup
|
|
h11
|
|
h2
|
|
priority
|
|
wsproto
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-trio
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# https://github.com/pgjones/hypercorn/issues/217
|
|
"test_startup_failure"
|
|
];
|
|
|
|
pythonImportsCheck = [ "hypercorn" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pgjones/hypercorn";
|
|
description = "ASGI web server inspired by Gunicorn";
|
|
mainProgram = "hypercorn";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dgliwka ];
|
|
};
|
|
}
|