linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / wakeonlan / default.nix
blob9499254ae4c26e88301a5edaa960ade631b296ba
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , poetry-core
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "wakeonlan";
11   version = "2.0.1";
12   disabled = pythonOlder "3.6";
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "remcohaszing";
17     repo = "pywakeonlan";
18     rev = version;
19     sha256 = "sha256-WgoL8ntfEaHcvVbJjdewe0wE31Lq7WBj8Bppeq1uJx8=";
20   };
22   nativeBuildInputs = [
23     poetry-core
24   ];
26   checkInputs = [
27     pytestCheckHook
28   ];
30   pytestFlagsArray = [ "test_wakeonlan.py" ];
32   pythonImportsCheck = [ "wakeonlan" ];
34   meta = with lib; {
35     description = "A small python module for wake on lan";
36     homepage = "https://github.com/remcohaszing/pywakeonlan";
37     license = licenses.mit;
38     maintainers = with maintainers; [ peterhoeg ];
39   };