mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
python312Packages.pytest-aio: 1.5.0 -> 1.8.1
Diff: https://github.com/klen/pytest-aio/compare/refs/tags/1.5.0...1.8.1 Changelog: https://github.com/klen/pytest-aio/blob/1.8.1/CHANGELOG.md
This commit is contained in:
parent
681d4a87b2
commit
36ba4c15c7
@ -7,6 +7,7 @@
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, poetry-core
|
||||
, sniffio
|
||||
, trio
|
||||
, trio-asyncio
|
||||
@ -14,8 +15,8 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-aio";
|
||||
version = "1.5.0";
|
||||
format = "setuptools";
|
||||
version = "1.8.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
@ -23,34 +24,38 @@ buildPythonPackage rec {
|
||||
owner = "klen";
|
||||
repo = "pytest-aio";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-BIVorMRWyboKFZCiELoBh/1oxSpdV263zfLce1fNVhU=";
|
||||
hash = "sha256-MexIL9yFTzhkJ/61GgYoT54MWV8B0c1/CWkN5FVTvnw=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i '/addopts/d' setup.cfg
|
||||
'';
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
dependencies = [
|
||||
anyio
|
||||
curio
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
sniffio
|
||||
trio
|
||||
trio-asyncio
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pytest_aio"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/klen/pytest-aio";
|
||||
description = "Pytest plugin for aiohttp support";
|
||||
homepage = "https://github.com/klen/pytest-aio";
|
||||
changelog = "https://github.com/klen/pytest-aio/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user