1{ buildPythonPackage, fetchPypi, six, lib }:
2
3buildPythonPackage rec {
4 pname = "srp";
5 version = "1.0.18";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1582317ccd383dc39d54f223424c588254d73d1cfb2c5c24d945e018ec9516bb";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 # Tests ends up with libssl.so cannot load shared
15 doCheck = false;
16
17 meta = with lib; {
18 longDescription = ''
19 This package provides an implementation of the Secure Remote Password protocol (SRP).
20 SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection.
21 '';
22 homepage = "https://github.com/cocagne/pysrp";
23 license = licenses.mit;
24 maintainers = with maintainers; [ jefflabonte ];
25 };
26}