Merge pull request #117593 from FRidh/python2alias

Python: be explicit on whether it is python2 or python3 that is used
This commit is contained in:
Frederik Rietdijk
2021-04-03 18:01:09 +02:00
committed by GitHub
62 changed files with 222 additions and 339 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, pythonPackages, glibcLocales }:
{ lib, fetchFromGitHub, python3Packages, glibcLocales }:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "i3minator";
version = "0.0.4";
@@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
propagatedBuildInputs = [ python3Packages.pyyaml python3Packages.i3-py ];
# No tests
doCheck = false;