wakeonlan: init at 1.0.0
This commit is contained in:
parent
02ba80a339
commit
88b7830b82
19
pkgs/development/python-modules/wakeonlan/default.nix
Normal file
19
pkgs/development/python-modules/wakeonlan/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -2787,6 +2787,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
wakeonlan = callPackage ../development/python-modules/wakeonlan { };
|
||||
|
||||
openant = buildPythonPackage rec {
|
||||
name = "openant-unstable-2017-02-11";
|
||||
|
Loading…
Reference in New Issue
Block a user