python313Packages.asyncio-dgram: 2.2.0 -> 3.0.0

Changelog: https://github.com/jsbronder/asyncio-dgram/blob/v3.0.0/ChangeLog
This commit is contained in:
Fabian Affolter
2026-01-26 13:04:22 +01:00
parent c2070b5fd6
commit 76d004cde0
@@ -3,24 +3,24 @@
stdenv,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "asyncio-dgram";
version = "2.2.0";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jsbronder";
repo = "asyncio-dgram";
tag = "v${version}";
hash = "sha256-9aO3xFmoR74uZSzxBPRVvz0QSW15TAdWEszLBX8AUR4=";
hash = "sha256-08XQHx+ArduVdkK5ZYq2lL2OWF9CvdSWcNLfc7ey2wI=";
};
build-system = [ setuptools ];
build-system = [ hatchling ];
nativeCheckInputs = [
pytest-asyncio