i3minator: fix for python3
Fixes for when changing to Python 3. Haven't tested the program though.
This commit is contained in:
parent
c558a5d46c
commit
576740f7f2
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pythonPackages }:
|
{ stdenv, fetchurl, pythonPackages, glibcLocales }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "i3minator-${version}";
|
name = "i3minator-${version}";
|
||||||
|
@ -9,8 +9,13 @@ pythonPackages.buildPythonApplication rec {
|
||||||
sha256 = "11dn062788kwfs8k2ry4v8zr2gn40r6lsw770s9g2gvhl5n469dw";
|
sha256 = "11dn062788kwfs8k2ry4v8zr2gn40r6lsw770s9g2gvhl5n469dw";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
buildInputs = [ glibcLocales ];
|
||||||
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
|
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "i3 project manager similar to tmuxinator";
|
description = "i3 project manager similar to tmuxinator";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue