python3Packages.git-remote-codecommit: init at 1.15.1

This commit is contained in:
Francesco Zanini 2020-09-26 13:02:01 +02:00 committed by Jon
parent 638612dadf
commit 6efc71f17b
2 changed files with 33 additions and 0 deletions

View file

@ -132,6 +132,8 @@ let
utillinux = if stdenv.isLinux then utillinuxMinimal else utillinux;
};
git-remote-codecommit = python3Packages.callPackage ./git-remote-codecommit { };
git-remote-gcrypt = callPackage ./git-remote-gcrypt { };
git-remote-hg = callPackage ./git-remote-hg { };

View file

@ -0,0 +1,31 @@
{ lib, buildPythonApplication, fetchFromGitHub, isPy3k, botocore, pytest, mock
, flake8, tox, awscli }:
buildPythonApplication rec {
pname = "git-remote-codecommit";
version = "1.15.1";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "aws";
repo = pname;
rev = version;
sha256 = "1vvp7i8ghmq72v57f6smh441h35xnr5ar628q2mr40bzvcifwymw";
};
propagatedBuildInputs = [ botocore ];
checkInputs = [ pytest mock flake8 tox awscli ];
checkPhase = ''
pytest
'';
meta = {
description =
"Git remote prefix to simplify pushing to and pulling from CodeCommit";
maintainers = [ lib.maintainers.zaninime ];
homepage = "https://github.com/awslabs/git-remote-codecommit";
license = lib.licenses.asl20;
};
}