diff --git a/pkgs/development/python-modules/mcstatus/default.nix b/pkgs/development/python-modules/mcstatus/default.nix index 92912f5f477a..c8ec08ddbc92 100644 --- a/pkgs/development/python-modules/mcstatus/default.nix +++ b/pkgs/development/python-modules/mcstatus/default.nix @@ -4,39 +4,29 @@ buildPythonPackage, dnspython, fetchFromGitHub, - poetry-core, - poetry-dynamic-versioning, + hatchling, pytest-asyncio, + pytest-cov-stub, pytest-rerunfailures, pytestCheckHook, - pythonOlder, + typing-extensions, }: buildPythonPackage rec { pname = "mcstatus"; - version = "11.1.1"; + version = "12.0.1"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "py-mine"; repo = "mcstatus"; tag = "v${version}"; - hash = "sha256-P8Su5P/ztyoXZBVvm5uCMDn4ezeg11oRSQ0QCyIJbVw="; + hash = "sha256-FSXELbEQYUUu2maWBFb5Fj7Y3zXqwmFQRAu+nNco0lQ="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace " --cov=mcstatus --cov-append --cov-branch --cov-report=term-missing -vvv --no-cov-on-fail" "" - ''; + build-system = [ hatchling ]; - nativeBuildInputs = [ - poetry-core - poetry-dynamic-versioning - ]; - - propagatedBuildInputs = [ + dependencies = [ asyncio-dgram dnspython ]; @@ -45,26 +35,30 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio + pytest-cov-stub pytest-rerunfailures pytestCheckHook + typing-extensions ]; pythonImportsCheck = [ "mcstatus" ]; disabledTests = [ # DNS features are limited in the sandbox - "test_query" - "test_query_retry" "test_resolve_localhost" "test_async_resolve_localhost" + "test_java_server_with_query_port" ]; - meta = with lib; { + meta = { description = "Python library for checking the status of Minecraft servers"; mainProgram = "mcstatus"; homepage = "https://github.com/py-mine/mcstatus"; changelog = "https://github.com/py-mine/mcstatus/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ + fab + perchun + ]; }; }