Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, ecdsa 5}: 6 7buildPythonPackage rec { 8 pname = "tlslite-ng"; 9 version = "0.7.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "6ab56f0e9629ce3d807eb528c9112defa9f2e00af2b2961254e8429ca5c1ff00"; 14 }; 15 16 buildInputs = [ ecdsa ]; 17 18 meta = with lib; { 19 description = "Pure python implementation of SSL and TLS."; 20 homepage = "https://pypi.python.org/pypi/tlslite-ng"; 21 license = licenses.lgpl2; 22 maintainers = [ ]; 23 }; 24 25}