Merge pull request #142235 from fabaff/bump-wakeonlan

python3Packages.wakeonlan: 2.0.1 -> 2.1.0
This commit is contained in:
Fabian Affolter 2021-10-26 08:17:01 +02:00 committed by GitHub
commit 24289c20fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "wakeonlan"; pname = "wakeonlan";
version = "2.0.1"; version = "2.1.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
format = "pyproject"; format = "pyproject";
@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "remcohaszing"; owner = "remcohaszing";
repo = "pywakeonlan"; repo = "pywakeonlan";
rev = version; rev = version;
sha256 = "sha256-WgoL8ntfEaHcvVbJjdewe0wE31Lq7WBj8Bppeq1uJx8="; sha256 = "sha256-5ri4bXc0EMNntzmcUZYpRIfaXoex4s5M6psf/9ta17Y=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -27,12 +27,16 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pytestFlagsArray = [ "test_wakeonlan.py" ]; pytestFlagsArray = [
"test_wakeonlan.py"
];
pythonImportsCheck = [ "wakeonlan" ]; pythonImportsCheck = [
"wakeonlan"
];
meta = with lib; { meta = with lib; {
description = "A small python module for wake on lan"; description = "Python module for wake on lan";
homepage = "https://github.com/remcohaszing/pywakeonlan"; homepage = "https://github.com/remcohaszing/pywakeonlan";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];