wakeonlan: init at 1.0.0

This commit is contained in:
Peter Hoeg 2018-02-27 00:41:29 +08:00
parent 02ba80a339
commit 88b7830b82
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "wakeonlan";
version = "1.0.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1snkyc6ph0bnypqs5yjw35mx3f9ij4808r5i06gl2vhn1rfzgyh1";
};
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 ];
};
}

View File

@ -2787,6 +2787,7 @@ in {
};
};
wakeonlan = callPackage ../development/python-modules/wakeonlan { };
openant = buildPythonPackage rec {
name = "openant-unstable-2017-02-11";