awsebcli: fixup, use python.pkgs.six from nixpkgs
This commit is contained in:
parent
f3de1bfb6d
commit
63576fb5c3
1 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,6 @@ let
|
|||
};
|
||||
}
|
||||
);
|
||||
six = changeVersion super.six.overridePythonAttrs "1.14.0" "02lw67hprv57hyg3cfy02y3ixjk3nzwc0dx3c4ynlvkfwkfdnsr3";
|
||||
wcwidth = changeVersion super.wcwidth.overridePythonAttrs "0.1.9" "1wf5ycjx8s066rdvr0fgz4xds9a8zhs91c4jzxvvymm1c8l8cwzf";
|
||||
semantic-version = changeVersion super.semantic-version.overridePythonAttrs "2.8.5" "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54";
|
||||
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
|
||||
|
@ -57,6 +56,11 @@ with localPython.pkgs; buildPythonApplication rec {
|
|||
sha256 = "sha256-W3nUXPAXoicDQNXigktR1+b/9W6qvi90fujrXAekxTU=";
|
||||
};
|
||||
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace setup.py --replace "six>=1.11.0,<1.15.0" "six"
|
||||
'';
|
||||
|
||||
buildInputs = [
|
||||
glibcLocales
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue