linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / noiseprotocol / default.nix
blob76ed1b1fc2a0c80055bdfdaa0886efbcbd9b6d7c
1 { lib, buildPythonPackage, fetchFromGitHub, cryptography, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "noiseprotocol";
5   version = "0.3.1";
7   src = fetchFromGitHub {
8     owner = "plizonczyk";
9     repo = "noiseprotocol";
10     rev = "v${version}";
11     sha256 = "1mk0rqpjifdv3v1cjwkdnjbrfmzzjm9f3qqs1r8vii4j2wvhm6am";
12   };
14   propagatedBuildInputs = [ cryptography ];
16   checkInputs = [ pytestCheckHook ];
18   pythonImportsCheck = [ "noise" ];
20   meta = with lib; {
21     description = "Noise Protocol Framework";
22     homepage = "https://github.com/plizonczyk/noiseprotocol/";
23     license = licenses.mit;
24     maintainers = with maintainers; [ SuperSandro2000 ];
25   };