summary refs log tree commit diff
path: root/pkgs/development/python-modules/tlslite-ng/default.nix
blob: a952c95d93e4ae983c4a5a71bd89b979f24aa765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, ecdsa
}:

buildPythonPackage rec {
  pname = "tlslite-ng";
  version = "0.7.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6ab56f0e9629ce3d807eb528c9112defa9f2e00af2b2961254e8429ca5c1ff00";
  };

  buildInputs = [ ecdsa ];

  meta = with lib; {
    description = "Pure python implementation of SSL and TLS.";
    homepage = "https://pypi.python.org/pypi/tlslite-ng";
    license = licenses.lgpl2;
    maintainers = [ maintainers.erictapen ];
  };

}