1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "backports.ssl_match_hostname";
5 version = "3.7.0.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "bb82e60f9fbf4c080eabd957c39f0641f0fc247d9a16e31e26d594d8f42b9fd2";
10 };
11
12 meta = with lib; {
13 description = "The Secure Sockets layer is only actually *secure*";
14 homepage = https://bitbucket.org/brandon/backports.ssl_match_hostname;
15 license = licenses.psfl;
16 };
17}