Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 423 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "tlslite"; 8 version = "0.4.9"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d"; 13 }; 14 15 meta = with lib; { 16 description = "A pure Python implementation of SSL and TLS"; 17 homepage = "https://pypi.python.org/pypi/tlslite"; 18 license = licenses.bsd3; 19 }; 20 21}