linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / srptools / default.nix
blob68ca009d9dc27b3f4043344c765324a6494b5c0f
1 { lib, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }:
3 buildPythonPackage rec {
4   pname = "srptools";
5   version = "1.0.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "7fa4337256a1542e8f5bb4bed19e1d9aea98fe5ff9baf76693342a1dd6ac7c96";
10   };
12   propagatedBuildInputs = [ six ];
14   checkInputs = [ pytest pytestrunner ];
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; [ elseym ];
21   };