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