mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #31162 from eqyiel/awsebcli-fixes
awsebcli: fix build and update
This commit is contained in:
commit
adcb60e96d
@ -1,8 +1,18 @@
|
|||||||
{ stdenv, python }:
|
{ stdenv, python }:
|
||||||
let
|
let
|
||||||
|
|
||||||
localPython = python.override {
|
localPython = python.override {
|
||||||
packageOverrides = self: super: rec {
|
packageOverrides = self: super: rec {
|
||||||
|
cement = super.cement.overridePythonAttrs (oldAttrs: rec {
|
||||||
|
version = "2.8.2";
|
||||||
|
|
||||||
|
src = super.fetchPypi {
|
||||||
|
inherit (oldAttrs) pname;
|
||||||
|
inherit version;
|
||||||
|
sha256 = "1li2whjzfhbpg6fjb6r1r92fb3967p1xv6hqs3j787865h2ysrc7";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
|
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
|
||||||
version = "0.3.7";
|
version = "0.3.7";
|
||||||
|
|
||||||
@ -67,11 +77,11 @@ let
|
|||||||
in with localPython.pkgs; buildPythonApplication rec {
|
in with localPython.pkgs; buildPythonApplication rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "awsebcli";
|
pname = "awsebcli";
|
||||||
version = "3.11.0";
|
version = "3.12.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "052388annhyirlzdr89hbgif8k7pw7win2zm1ybn4iiisr5l49zi";
|
sha256 = "0ljras4bgxpmk1l3plialmhi7jsm2cpzx0dcs9411ijykzkamdkd";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
Loading…
Reference in New Issue
Block a user