Merge pull request #33065 from teto/protocol

protocol: init at 20171226

authored by Frederik Rietdijk and committed by GitHub 9ee22e24 9b22100d

+22
+20
pkgs/development/python-modules/protocol/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchFromGitHub }: 2 + 3 + buildPythonPackage 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 + }
+2
pkgs/top-level/python-packages.nix
··· 22368 22368 22369 22369 trezor = callPackage ../development/python-modules/trezor { }; 22370 22370 22371 + protocol = callPackage ../development/python-modules/protocol { }; 22372 + 22371 22373 trezor_agent = buildPythonPackage rec{ 22372 22374 name = "${pname}-${version}"; 22373 22375 pname = "trezor_agent";