1{ stdenv, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }:
2
3buildPythonPackage rec {
4 pname = "srptools";
5 version = "1.0.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "5754f639ed1888f47c1185d74e8907ff9af4c0ccc1c8be2ef19339d0a1327f4d";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 checkInputs = [ pytest pytestrunner ];
15
16 meta = with stdenv.lib; {
17 description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
18 homepage = "https://github.com/idlesign/srptools";
19 license = licenses.bsd3;
20 maintainers = with maintainers; [ elseym ];
21 };
22}