cligh: switch to Python 3

This commit is contained in:
Jan Tojnar 2017-12-20 23:10:45 +01:00
parent 8a935323bb
commit 53acbe8156
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, buildPythonApplication, pyxdg, PyGithub }:
pythonPackages.buildPythonApplication rec {
buildPythonApplication rec {
name = "cligh-${version}";
version = "0.3";
@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
};
propagatedBuildInputs = with pythonPackages; [ pyxdg PyGithub ];
propagatedBuildInputs = [ pyxdg PyGithub ];
meta = with stdenv.lib; {
homepage = http://the-brannons.com/software/cligh.html;

View File

@ -14266,7 +14266,7 @@ with pkgs;
clfswm = callPackage ../applications/window-managers/clfswm { };
cligh = callPackage ../development/tools/github/cligh {};
cligh = python3Packages.callPackage ../development/tools/github/cligh {};
clipgrab = callPackage ../applications/video/clipgrab { };