python3Packages.tls-parser: disable for Python < 3.7

This commit is contained in:
Vincent Haupert 2021-05-08 10:44:43 +02:00 committed by Jonathan Ringer
parent 33886abdfe
commit ebc050cb5e

View file

@ -1,5 +1,5 @@
{ lib
, isPy27
, pythonOlder
, fetchFromGitHub
, buildPythonPackage
, pytestCheckHook
@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "tls-parser";
version = "1.2.2";
disabled = isPy27;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nabla-c0d3";