python.pkgs.backports_ssl_match_hostname: move expression

This commit is contained in:
Robert Schütz
2018-07-15 01:14:36 +02:00
parent 3e31d23d99
commit fcc747ffa0
2 changed files with 19 additions and 14 deletions

View File

@@ -0,0 +1,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;
};
}