Merge pull request #119478 from fabaff/bump-mcstatus

python3Packages.mcstatus: 5.1.2 -> 5.1.4
This commit is contained in:
Martin Weinelt 2021-04-15 00:44:55 +02:00 committed by GitHub
commit 13a24e043a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@
, dnspython
, fetchFromGitHub
, mock
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, six
@ -12,14 +13,14 @@
buildPythonPackage rec {
pname = "mcstatus";
version = "5.1.2";
version = "5.1.4";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Dinnerbone";
repo = pname;
rev = "release-${version}";
sha256 = "16k5vcqpd9r7mm1cg9khzba42rcxs491h8gk2klymav249yzrwk7";
rev = "v${version}";
sha256 = "1k8hjv965svbm95m7jaawlhdbxqpkjchlwvjwn1n7z90dfgn5kih";
};
propagatedBuildInputs = [
@ -31,6 +32,7 @@ buildPythonPackage rec {
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];