nixpkgs/pkgs/development/python-modules/hypercorn/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
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/'
2024-06-09 23:08:46 +02:00

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 ];
};
}