Robert Schütz 2025-03-02 11:06:40 -08:00 committed by Martin Weinelt
parent 5a77884650
commit 63b6c596b1

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "async-interrupt";
version = "1.2.0";
version = "1.2.2";
pyproject = true;
disabled = pythonOlder "3.9";
@ -20,10 +20,10 @@ buildPythonPackage rec {
owner = "bdraco";
repo = "async_interrupt";
tag = "v${version}";
hash = "sha256-opV5h3aLDDpjlRZRZ9OnrPjUOf/i7g+B9T6msk8wtgI=";
hash = "sha256-M0ftyHstBP7+6M2b6yV33mSuO4B8QF3ixRvNJ/WeSEA=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
nativeCheckInputs = [
pytest-asyncio
@ -36,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Context manager to raise an exception when a future is done";
homepage = "https://github.com/bdraco/async_interrupt";
changelog = "https://github.com/bdraco/async_interrupt/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/bdraco/async_interrupt/blob/${src.tag}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};