forked from mirrors/nixpkgs
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:
parent
389d129a3d
commit
bb0fbcc792
|
@ -9,7 +9,7 @@ with python3Packages;
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "vit";
|
pname = "vit";
|
||||||
version = "2.2.0";
|
version = "2.2.0";
|
||||||
disabled = lib.versionOlder python.version "3.6";
|
disabled = lib.versionOlder python.version "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
@ -17,9 +17,7 @@ buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pytz
|
|
||||||
tasklib
|
tasklib
|
||||||
tzlocal
|
|
||||||
urwid
|
urwid
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue