blob: 0f23df1e6ef15af9473b463b3c85aaeed5f2e95b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "wakeonlan";
version = "3.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "remcohaszing";
repo = "pywakeonlan";
tag = version;
hash = "sha256-VPdklyD3GVn0cex4I6zV61I0bUr4KQp8DdMKAM/r4io=";
};
nativeBuildInputs = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "test_wakeonlan.py" ];
pythonImportsCheck = [ "wakeonlan" ];
meta = {
description = "Python module for wake on lan";
mainProgram = "wakeonlan";
homepage = "https://github.com/remcohaszing/pywakeonlan";
changelog = "https://github.com/remcohaszing/pywakeonlan/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ peterhoeg ];
};
}
|