mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
86 lines
1.4 KiB
Nix
86 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# build-system
|
|
, poetry-core
|
|
|
|
# propagates
|
|
, aiofiles
|
|
, blinker
|
|
, click
|
|
, hypercorn
|
|
, importlib-metadata
|
|
, itsdangerous
|
|
, jinja2
|
|
, markupsafe
|
|
, pydata-sphinx-theme
|
|
, python-dotenv
|
|
, typing-extensions
|
|
, werkzeug
|
|
|
|
# tests
|
|
, hypothesis
|
|
, mock
|
|
, py
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "quart";
|
|
version = "0.18.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pallets";
|
|
repo = "quart";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-iT/pePUtH1hwNIOG8Y/YbqCVseNXVOKC0nrXfB2RTlQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "--no-cov-on-fail " ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
blinker
|
|
click
|
|
hypercorn
|
|
importlib-metadata
|
|
itsdangerous
|
|
jinja2
|
|
markupsafe
|
|
pydata-sphinx-theme
|
|
python-dotenv
|
|
typing-extensions
|
|
werkzeug
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"quart"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
mock
|
|
py
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An async Python micro framework for building web applications";
|
|
homepage = "https://github.com/pallets/quart/";
|
|
changelog = "https://github.com/pallets/quart/blob/${src.rev}/CHANGES.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|