mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.tls-parser: disable for Python < 3.7
This commit is contained in:
parent
33886abdfe
commit
ebc050cb5e
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user