1{ stdenv, buildPythonApplication, fetchFromGitHub }:
2
3buildPythonApplication rec {
4 pname = "protocol";
5 version = "20171226";
6
7 src = fetchFromGitHub {
8 owner = "luismartingarcia";
9 repo = "protocol";
10 rev = "d450da7d8a58595d8ef82f1d199a80411029fc7d";
11 sha256 = "1g31s2xx0bw8ak5ag1c6mv0p0b8bj5dp3lkk9mxaf2ndj1m1qdkw";
12 };
13
14 meta = with stdenv.lib; {
15 description = "An ASCII Header Generator for Network Protocols";
16 homepage = https://github.com/luismartingarcia/protocol;
17 license = licenses.gpl3;
18 maintainers = with maintainers; [ teto ];
19 };
20}