Skip to content

Commit

Permalink
git-remote-codecommit: fix build
Browse files Browse the repository at this point in the history
- Don't call from a different scope
- Disable catching of conflicts because we do get a (installation-time
only) conflict due to overrides in awscli.
  • Loading branch information
FRidh committed Oct 27, 2022
1 parent 33d12e5 commit 6b0494c
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{ lib, buildPythonApplication, fetchFromGitHub, isPy3k, botocore, pytest, mock
, flake8, tox, awscli }:
{ lib, fetchFromGitHub, python3Packages, awscli }:

with python3Packages;

buildPythonApplication rec {
pname = "git-remote-codecommit";
version = "1.15.1";
disabled = !isPy3k;

# The check dependency awscli has some overrides
# which yield a different botocore.
# This results in a duplicate version during installation
# of the wheel, even though it does not matter
# because it is only a test dependency.
catchConflicts = false;

src = fetchFromGitHub {
owner = "aws";
repo = pname;
Expand Down

0 comments on commit 6b0494c

Please sign in to comment.