vit: needs py3.7 now, drop pytz/tzlocal

See:
https://github.com/vit-project/vit/releases/tag/v2.2.0
This commit is contained in:
Will Dietz 2022-04-18 09:14:52 -05:00
parent 389d129a3d
commit bb0fbcc792

View file

@ -9,7 +9,7 @@ with python3Packages;
buildPythonApplication rec {
pname = "vit";
version = "2.2.0";
disabled = lib.versionOlder python.version "3.6";
disabled = lib.versionOlder python.version "3.7";
src = fetchPypi {
inherit pname version;
@ -17,9 +17,7 @@ buildPythonApplication rec {
};
propagatedBuildInputs = [
pytz
tasklib
tzlocal
urwid
];