about summary refs log tree commit diff
path: root/pkgs/development/python-modules/srptools/default.nix
blob: 2df3397f6255f169579c164f09640e32e2762ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }:

buildPythonPackage rec {
  pname = "srptools";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g0jdkblnd3wv5xgb33g6sfgqnhdcs8a3gqzp5gshq2vawdh8p37";
  };

  propagatedBuildInputs = [ six ];

  checkInputs = [ pytest pytestrunner ];

  meta = with stdenv.lib; {
    description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
    homepage = https://github.com/idlesign/srptools;
    license = licenses.bsd3;
    maintainers = with maintainers; [ elseym ];
  };
}