gitless: relax pygit2 constraint and limit to Python 3

This commit is contained in:
Fabian Affolter 2022-01-24 23:15:31 +01:00
parent 8fc6055ce7
commit 0383246382
2 changed files with 26 additions and 11 deletions

View file

@ -1,27 +1,42 @@
{ fetchFromGitHub, python, lib }:
{ lib
, fetchFromGitHub
, python3
}:
with python.pkgs;
buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "gitless";
version = "0.8.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "gitless-vcs";
repo = "gitless";
repo = pname;
rev = "v${version}";
sha256 = "sha256-xo5EWtP2aN8YzP8ro3bnxZwUGUp0PHD0g8hk+Y+gExE=";
hash = "sha256-xo5EWtP2aN8YzP8ro3bnxZwUGUp0PHD0g8hk+Y+gExE=";
};
propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ];
propagatedBuildInputs = with python3.pkgs; [
sh
pygit2
clint
];
postPatch = ''
substituteInPlace setup.py \
--replace "pygit2==0.28.2" "pygit2>=0.28.2"
'';
doCheck = false;
pythonImportsCheck = [
"gitless"
];
meta = with lib; {
description = "Version control system built on top of Git";
homepage = "https://gitless.com/";
description = "A version control system built on top of Git";
license = licenses.gpl2;
license = licenses.mit;
maintainers = with maintainers; [ cransom ];
platforms = platforms.all;
maintainers = [ maintainers.cransom ];
};
}

View file

@ -1781,7 +1781,7 @@ with pkgs;
github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite;
gitless = callPackage ../applications/version-management/gitless { python = python3; };
gitless = callPackage ../applications/version-management/gitless { };
gistyc = with python3Packages; toPythonApplication gistyc;