nixpkgs/pkgs/development/python-modules/wakeonlan/default.nix

32 lines
744 B
Nix
Raw Normal View History

2018-04-06 13:06:16 +00:00
{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pytest, mock }:
2018-02-26 16:41:29 +00:00
buildPythonPackage rec {
pname = "wakeonlan";
2018-04-04 18:18:49 +00:00
version = "1.1.6";
2018-02-26 16:41:29 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 18:18:49 +00:00
sha256 = "5e6013a17004809e676c150689abd94bcc0f12a37ad3fbce1f6270968f95ffa9";
2018-02-26 16:41:29 +00:00
};
2018-04-06 13:06:16 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace "setuptools-scm ~= 1.15.7" "setuptools-scm"
'';
checkInputs = [ pytest mock ];
nativeBuildInputs = [ setuptools_scm ];
checkPhase = ''
py.test
'';
2018-02-26 16:41:29 +00:00
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 ];
};
}