1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, ecdsa
5}:
6
7buildPythonPackage rec {
8 pname = "tlslite-ng";
9 version = "0.7.5";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1aw7j50byzab0xwp50m5w5c14fzdzwk2law5a5bn6dn3i5fc6fw2";
14 };
15
16 buildInputs = [ ecdsa ];
17
18 meta = with stdenv.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 = [ maintainers.erictapen ];
23 };
24
25}