lit: use python3

This commit is contained in:
Jonathan Ringer 2020-03-31 09:41:19 -07:00 committed by Jon
parent 5a34c9946f
commit 239343c6c3

View file

@ -1,10 +1,10 @@
{ lib, python2 }:
{ lib, python3 }:
python2.pkgs.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "lit";
version = "0.9.0";
src = python2.pkgs.fetchPypi {
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "0vkqv0ijjkfg70j26cxqz75bpn2p78all5j5cw2gfcrn4c5aldf0";
};