lit: be explicit about python used, as convention

This commit is contained in:
Will Dietz 2018-12-29 14:42:22 -06:00
parent ef12b9cbd6
commit b42eab83dc

View File

@ -1,10 +1,10 @@
{ lib, python }:
{ lib, python2 }:
python.pkgs.buildPythonApplication rec {
python2.pkgs.buildPythonApplication rec {
pname = "lit";
version = "0.7.0";
src = python.pkgs.fetchPypi {
src = python2.pkgs.fetchPypi {
inherit pname version;
sha256 = "13b32f1f1b3912bbf2bda91e9d1609abc92c0b4ce83276fe13a340516252e4b0";
};