2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }:
|
2019-01-01 19:49:22 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "srptools";
|
2020-10-25 09:06:58 +00:00
|
|
|
version = "1.0.1";
|
2019-01-01 19:49:22 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 09:06:58 +00:00
|
|
|
sha256 = "7fa4337256a1542e8f5bb4bed19e1d9aea98fe5ff9baf76693342a1dd6ac7c96";
|
2019-01-01 19:49:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytestrunner ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-01 19:49:22 +00:00
|
|
|
description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/idlesign/srptools";
|
2019-01-01 19:49:22 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ elseym ];
|
|
|
|
};
|
|
|
|
}
|