about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dissononce/default.nix
blob: 80655e6aa0843ad06c720e451a79bcef922cc30e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ buildPythonPackage, fetchFromGitHub, lib, pytest, cryptography, transitions }:

buildPythonPackage rec {
  pname = "dissononce";
  version = "0.34.3";

  src = fetchFromGitHub {
    owner = "tgalal";
    repo = "dissononce";
    rev = version;
    sha256 = "0hn64qfr0d5npmza6rjyxwwp12k2z2y1ma40zpl104ghac6g3mbs";
  };

  checkInputs = [ pytest ];
  checkPhase = ''
    HOME=$(mktemp -d) py.test tests/
  '';

  propagatedBuildInputs = [ cryptography transitions ];

  meta = with lib; {
    homepage = "https://pypi.org/project/dissononce/";
    license = licenses.mit;
    description = "A python implementation for Noise Protocol Framework";
  };
}