Skip to content

Commit 3a15cde

Browse files
committedJun 18, 2017
amazon-glacier-cmd-interface: fix missing argparse dep
1 parent 4c4b102 commit 3a15cde

File tree

1 file changed

+5
-1
lines changed
  • pkgs/tools/backup/amazon-glacier-cmd-interface

1 file changed

+5
-1
lines changed
 

Diff for: ‎pkgs/tools/backup/amazon-glacier-cmd-interface/default.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ python2Packages.buildPythonApplication rec {
1111
sha256 = "1k5z8kda9v6klr4536pf5qbq9zklxvyysv7nc48gllschl09jywc";
1212
};
1313

14+
# argparse is part of the standardlib
15+
prePatch = ''
16+
substituteInPlace setup.py --replace "'argparse'," ""
17+
'';
18+
1419
propagatedBuildInputs = with python2Packages; [
15-
argparse
1620
boto
1721
dateutil
1822
prettytable

0 commit comments

Comments
 (0)
Please sign in to comment.