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