Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 779 B view raw
1{ buildPythonPackage, fetchPypi, six, lib }: 2 3buildPythonPackage rec { 4 pname = "srp"; 5 version = "1.0.17"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f2e3fed4e5cbfd6b481edc9cdd51a8c39a609eae117210218556004bdc9016b2"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 # Tests ends up with libssl.so cannot load shared 15 doCheck = false; 16 17 meta = with lib; { 18 longDescription = '' 19 This package provides an implementation of the Secure Remote Password protocol (SRP). 20 SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection. 21 ''; 22 homepage = "https://github.com/cocagne/pysrp"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ jefflabonte ]; 25 }; 26}