python310Packages.vivisect: disable on unsupported Python releases
This commit is contained in:
parent
4e2a303567
commit
9a1ad8af4f
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue