pythonPackages.backports_ssl_match_hostname: disable for python >= 3.7
This commit is contained in:
parent
28fd5b36ea
commit
211b423dae
@ -1,8 +1,9 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi }:
|
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "backports.ssl_match_hostname";
|
pname = "backports.ssl_match_hostname";
|
||||||
version = "3.7.0.1";
|
version = "3.7.0.1";
|
||||||
|
disabled = pythonAtLeast "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user