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

19 lines
483 B
Nix
Raw Normal View History

2018-02-26 16:41:29 +00:00
{ stdenv, fetchPypi, buildPythonPackage }:
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
};
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 ];
};
}