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

buildPythonPackage rec {
  pname = "tlslite";
  version = "0.4.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d";
  };

  meta = with stdenv.lib; {
    description = "A pure Python implementation of SSL and TLS";
    homepage = "https://pypi.python.org/pypi/tlslite";
    license = licenses.bsd3;
  };

}