Skip to content

Commit 53acbe8

Browse files
committedDec 20, 2017
cligh: switch to Python 3
1 parent 8a93532 commit 53acbe8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎pkgs/development/tools/github/cligh/default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{ stdenv, fetchFromGitHub, pythonPackages }:
1+
{ stdenv, fetchFromGitHub, buildPythonApplication, pyxdg, PyGithub }:
22

3-
pythonPackages.buildPythonApplication rec {
3+
buildPythonApplication rec {
44
name = "cligh-${version}";
55
version = "0.3";
66

@@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
1313
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
1414
};
1515

16-
propagatedBuildInputs = with pythonPackages; [ pyxdg PyGithub ];
16+
propagatedBuildInputs = [ pyxdg PyGithub ];
1717

1818
meta = with stdenv.lib; {
1919
homepage = http://the-brannons.com/software/cligh.html;

‎pkgs/top-level/all-packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -14266,7 +14266,7 @@ with pkgs;
1426614266

1426714267
clfswm = callPackage ../applications/window-managers/clfswm { };
1426814268

14269-
cligh = callPackage ../development/tools/github/cligh {};
14269+
cligh = python3Packages.callPackage ../development/tools/github/cligh {};
1427014270

1427114271
clipgrab = callPackage ../applications/video/clipgrab { };
1427214272

0 commit comments

Comments
 (0)
Please sign in to comment.