python310Packages.vivisect: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-02-24 23:18:36 +01:00 committed by GitHub
parent 4e2a303567
commit 9a1ad8af4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, isPy3k
, pythonOlder
, fetchPypi
, wrapQtAppsHook
@ -22,6 +22,9 @@
buildPythonPackage rec {
pname = "vivisect";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;