python313Packages.mcstatus: 12.0.2 -> 12.0.5 (#443494)

authored by

Nick Cao and committed by
GitHub
e04396ff cc754793

+9 -5
+9 -5
pkgs/development/python-modules/mcstatus/default.nix
··· 10 pytest-rerunfailures, 11 pytestCheckHook, 12 typing-extensions, 13 }: 14 15 buildPythonPackage rec { 16 pname = "mcstatus"; 17 - version = "12.0.2"; 18 pyproject = true; 19 20 src = fetchFromGitHub { 21 owner = "py-mine"; 22 repo = "mcstatus"; 23 tag = "v${version}"; 24 - hash = "sha256-DWIpN7oBbb/F5aER0v0qhcQsDoa/EfizjHgy/BE2P6E="; 25 }; 26 27 - build-system = [ hatchling ]; 28 29 dependencies = [ 30 asyncio-dgram ··· 53 54 meta = { 55 description = "Python library for checking the status of Minecraft servers"; 56 - mainProgram = "mcstatus"; 57 homepage = "https://github.com/py-mine/mcstatus"; 58 changelog = "https://github.com/py-mine/mcstatus/releases/tag/${src.tag}"; 59 - license = with lib.licenses; [ asl20 ]; 60 maintainers = with lib.maintainers; [ 61 fab 62 perchun 63 ]; 64 }; 65 }
··· 10 pytest-rerunfailures, 11 pytestCheckHook, 12 typing-extensions, 13 + uv-dynamic-versioning, 14 }: 15 16 buildPythonPackage rec { 17 pname = "mcstatus"; 18 + version = "12.0.5"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "py-mine"; 23 repo = "mcstatus"; 24 tag = "v${version}"; 25 + hash = "sha256-gtLWUIxG40MsmavA4KrHJ3btCR/zKdstwiUiZGsoNcw="; 26 }; 27 28 + build-system = [ 29 + hatchling 30 + uv-dynamic-versioning 31 + ]; 32 33 dependencies = [ 34 asyncio-dgram ··· 57 58 meta = { 59 description = "Python library for checking the status of Minecraft servers"; 60 homepage = "https://github.com/py-mine/mcstatus"; 61 changelog = "https://github.com/py-mine/mcstatus/releases/tag/${src.tag}"; 62 + license = lib.licenses.asl20; 63 maintainers = with lib.maintainers; [ 64 fab 65 perchun 66 ]; 67 + mainProgram = "mcstatus"; 68 }; 69 }