1 { lib, buildPythonPackage, fetchFromGitHub, cryptography, pytestCheckHook }:
3 buildPythonPackage rec {
4 pname = "noiseprotocol";
7 src = fetchFromGitHub {
9 repo = "noiseprotocol";
11 sha256 = "1mk0rqpjifdv3v1cjwkdnjbrfmzzjm9f3qqs1r8vii4j2wvhm6am";
14 propagatedBuildInputs = [ cryptography ];
16 checkInputs = [ pytestCheckHook ];
18 pythonImportsCheck = [ "noise" ];
21 description = "Noise Protocol Framework";
22 homepage = "https://github.com/plizonczyk/noiseprotocol/";
23 license = licenses.mit;
24 maintainers = with maintainers; [ SuperSandro2000 ];