1{ lib, buildPythonPackage, fetchPypi, six, pytest, pytest-runner }: 2 3buildPythonPackage rec { 4 pname = "srptools"; 5 version = "1.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7fa4337256a1542e8f5bb4bed19e1d9aea98fe5ff9baf76693342a1dd6ac7c96"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 checkInputs = [ pytest pytest-runner ]; 15 16 meta = with 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; [ ]; 21 }; 22}