11 buildPythonPackage rec {
16 src = fetchFromGitHub {
18 repo = "python-spake2";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-WPMGH1OzG+5O+2lNl2sv06/dNardY+BHYDS290Z36vQ=";
23 build-system = [ setuptools ];
25 dependencies = [ cryptography ];
27 pythonImportsCheck = [ "spake2" ];
29 nativeCheckInputs = [ pytestCheckHook ];
32 changelog = "https://github.com/warner/python-spake2/blob/v${version}/NEWS";
33 description = "SPAKE2 password-authenticated key exchange library";
34 homepage = "https://github.com/warner/python-spake2";
35 license = licenses.mit;
36 maintainers = with maintainers; [ dotlambda ];