summary refs log tree commit diff
path: root/pkgs/development/python-modules/wakeonlan/default.nix
blob: b5c9e14da355adbb190ba4b75fc8e08719f0cc21 (plain) (blame)
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
{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pytest, mock }:

buildPythonPackage rec {
  pname = "wakeonlan";
  version = "1.1.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5e6013a17004809e676c150689abd94bcc0f12a37ad3fbce1f6270968f95ffa9";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "setuptools-scm ~= 1.15.7" "setuptools-scm"
  '';

  checkInputs = [ pytest mock ];

  nativeBuildInputs = [ setuptools_scm ];

  checkPhase = ''
    py.test
  '';

  meta = with stdenv.lib; {
    description = "A small python module for wake on lan";
    homepage = https://github.com/remcohaszing/pywakeonlan;
    license = licenses.wtfpl;
    maintainers = with maintainers; [ peterhoeg ];
  };
}