depot/third_party/nixpkgs/pkgs/development/python-modules/timing-asgi/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

46 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "timing-asgi";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "steinnes";
repo = "timing-asgi";
rev = "refs/tags/v${version}";
hash = "sha256-oEDesmy9t2m51Zd6Zg87qoYbfbDnejfrbjyBkZ3hF58=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail poetry.masonry.api poetry.core.masonry.api \
--replace-fail "poetry>=" "poetry-core>="
'';
build-system = [ poetry-core ];
pythonImportsCheck = [ "timing_asgi" ];
# Tests rely on asynctest which is not supported by python 3.11
doCheck = false;
nativeCheckInputs = [
# asynctest-0.13.0 not supported for interpreter python3.11
# asynctest
pytestCheckHook
];
meta = with lib; {
description = "ASGI middleware to emit timing metrics with something like statsd";
homepage = "https://pypi.org/project/timing-asgi";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}