git-remote-codecommit: 1.15.1 -> 1.17 (#384113)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-04 00:55:05 +01:00
committed by GitHub
2 changed files with 18 additions and 21 deletions
@@ -5,12 +5,10 @@
awscli,
}:
with python3Packages;
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "git-remote-codecommit";
version = "1.15.1";
disabled = !isPy3k;
version = "1.17";
disabled = !python3Packages.isPy3k;
# The check dependency awscli has some overrides
# which yield a different botocore.
@@ -21,24 +19,23 @@ buildPythonApplication rec {
src = fetchFromGitHub {
owner = "aws";
repo = pname;
rev = version;
sha256 = "1vvp7i8ghmq72v57f6smh441h35xnr5ar628q2mr40bzvcifwymw";
repo = "git-remote-codecommit";
tag = version;
hash = "sha256-8heI0Oyfhuvshedw+Eqmwd+e9cOHdDt4O588dplqv/k=";
};
propagatedBuildInputs = [ botocore ];
dependencies = with python3Packages; [ botocore ];
nativeCheckInputs = [
pytest
mock
flake8
tox
awscli
];
checkPhase = ''
pytest
'';
nativeCheckInputs =
[
awscli
]
++ (with python3Packages; [
pytestCheckHook
mock
flake8
tox
]);
meta = {
description = "Git remote prefix to simplify pushing to and pulling from CodeCommit";
+1 -1
View File
@@ -1243,7 +1243,7 @@ with pkgs;
util-linux = if stdenv.hostPlatform.isLinux then util-linuxMinimal else util-linux;
};
git-remote-codecommit = python3Packages.callPackage ../applications/version-management/git-remote-codecommit { };
git-remote-codecommit = callPackage ../applications/version-management/git-remote-codecommit { };
gitRepo = git-repo;
git-repo-updater = python3Packages.callPackage ../applications/version-management/git-repo-updater { };