pythonPackages.backports_ssl_match_hostname: disable for python >= 3.7

This commit is contained in:
Sandro Jäckel 2021-03-12 02:43:12 +01:00
parent 28fd5b36ea
commit 211b423dae
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast }:
buildPythonPackage rec {
pname = "backports.ssl_match_hostname";
version = "3.7.0.1";
disabled = pythonAtLeast "3.7";
src = fetchPypi {
inherit pname version;