gitless: use python3

This commit is contained in:
Jonathan Ringer 2019-12-30 00:13:43 -08:00 committed by Frederik Rietdijk
parent 9ac2382e2a
commit 4c28daa093
2 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,14 @@
{ fetchFromGitHub, pythonPackages, stdenv }:
{ fetchFromGitHub, python, stdenv }:
pythonPackages.buildPythonApplication rec {
ver = "0.8.6";
name = "gitless-${ver}";
with python.pkgs;
buildPythonApplication rec {
pname = "gitless";
version = "0.8.8";
src = fetchFromGitHub {
owner = "sdg-mit";
repo = "gitless";
rev = "v${ver}";
rev = "v${version}";
sha256 = "1q6y38f8ap6q1livvfy0pfnjr0l8b68hyhc9r5v87fmdyl7y7y8g";
};

View File

@ -901,7 +901,7 @@ in
github-commenter = callPackage ../development/tools/github-commenter { };
gitless = callPackage ../applications/version-management/gitless { };
gitless = callPackage ../applications/version-management/gitless { python = python3; };
gitter = callPackage ../applications/networking/instant-messengers/gitter { };