bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
21 lines
425 B
Nix
21 lines
425 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tlslite";
|
|
version = "0.4.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Pure Python implementation of SSL and TLS";
|
|
homepage = "https://pypi.python.org/pypi/tlslite";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|