nixpkgs/pkgs/development/python-modules/mcstatus/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

72 lines
1.5 KiB
Nix

{ lib
, asyncio-dgram
, buildPythonPackage
, dnspython
, fetchFromGitHub
, poetry-core
, poetry-dynamic-versioning
, pytest-asyncio
, pytest-rerunfailures
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "mcstatus";
version = "11.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "py-mine";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-P8Su5P/ztyoXZBVvm5uCMDn4ezeg11oRSQ0QCyIJbVw=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=mcstatus --cov-append --cov-branch --cov-report=term-missing -vvv --no-cov-on-fail" ""
'';
nativeBuildInputs = [
poetry-core
poetry-dynamic-versioning
];
propagatedBuildInputs = [
asyncio-dgram
dnspython
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
pytest-asyncio
pytest-rerunfailures
pytestCheckHook
];
pythonImportsCheck = [
"mcstatus"
];
disabledTests = [
# DNS features are limited in the sandbox
"test_query"
"test_query_retry"
"test_resolve_localhost"
"test_async_resolve_localhost"
];
meta = with lib; {
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 ];
};
}