My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/tlslite/default.nix

21 lines
423 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "tlslite";
version = "0.4.9";
src = fetchPypi {
inherit pname version;
sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d";
};
meta = with lib; {
description = "A pure Python implementation of SSL and TLS";
homepage = "https://pypi.python.org/pypi/tlslite";
license = licenses.bsd3;
};
}