Merge pull request #76092 from terlar/fix-awscli

awscli: pin colorama to 0.4.1
This commit is contained in:
Daiderd Jordan 2019-12-20 16:07:56 +01:00 committed by GitHub
commit 116ef2a717
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,13 @@
let
py = python3.override {
packageOverrides = self: super: {
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
version = "0.4.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "05eed71e2e327246ad6b38c540c4a3117230b19679b875190486ddd2d721422d";
};
});
rsa = super.rsa.overridePythonAttrs (oldAttrs: rec {
version = "3.4.2";
src = oldAttrs.src.override {