My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/hypercorn/default.nix

59 lines
1.1 KiB

{ lib
, buildPythonPackage
, fetchFromGitLab
, pythonOlder
, typing-extensions
, wsproto
, toml
, h2
, priority
, mock
, poetry-core
, pytest-asyncio
, pytest-cov
, pytest-sugar
, pytest-trio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Hypercorn";
version = "0.13.2";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchFromGitLab {
owner = "pgjones";
repo = pname;
rev = version;
sha256 = "sha256-fIjw5A6SvFUv8cU7xunVlPYphv+glypY4pzvHNifYLQ=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ wsproto toml h2 priority ]
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
checkInputs = [
pytest-asyncio
pytest-cov
pytest-sugar
pytest-trio
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.8") [ mock ];
pytestFlagsArray = [
"--asyncio-mode=legacy"
];
pythonImportsCheck = [ "hypercorn" ];
meta = with lib; {
homepage = "https://pgjones.gitlab.io/hypercorn/";
description = "The ASGI web server inspired by Gunicorn";
license = licenses.mit;
maintainers = with maintainers; [ dgliwka ];
};
}