platformio: update override
This commit is contained in:
parent
853e3c7d19
commit
24017b0b1c
1 changed files with 7 additions and 3 deletions
|
@ -9,11 +9,15 @@ let
|
||||||
python = python3.override {
|
python = python3.override {
|
||||||
packageOverrides = self: super: {
|
packageOverrides = self: super: {
|
||||||
aiofiles = super.aiofiles.overridePythonAttrs (oldAttrs: rec {
|
aiofiles = super.aiofiles.overridePythonAttrs (oldAttrs: rec {
|
||||||
|
pname = "aiofiles";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
src = oldAttrs.src.override {
|
src = fetchFromGitHub {
|
||||||
inherit version;
|
owner = "Tinche";
|
||||||
sha256 = "e0281b157d3d5d59d803e3f4557dcc9a3dff28a4dd4829a9ff478adae50ca092";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0w23d88q65m06884pfcps661clr11w9wm701ihx6kfxjwga6fkzf";
|
||||||
};
|
};
|
||||||
|
doCheck = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
click = super.click.overridePythonAttrs (oldAttrs: rec {
|
click = super.click.overridePythonAttrs (oldAttrs: rec {
|
||||||
|
|
Loading…
Reference in a new issue