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

buildPythonPackage rec {
  pname = "backports.ssl_match_hostname";
  version = "3.5.0.1";

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

  meta = with lib; {
    description = "The Secure Sockets layer is only actually *secure*";
    homepage = https://bitbucket.org/brandon/backports.ssl_match_hostname;
    license = licenses.psfl;
  };
}