about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tlslite/default.nix
blob: 75d622ef34f387d28230baf796dfe319e8f0f048 (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.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1fxx6d3nw5r1hqna1h2jvqhcygn9fyshlm0gh3gp0b1ji824gd6r";
  };

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

}