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