mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 14:00:59 +03:00
Merge pull request #150863 from oxzi/platformio-5.2.4
platformio: 5.2.3 -> 5.2.4
This commit is contained in:
commit
cc28710bbf
@ -9,6 +9,16 @@
|
|||||||
let
|
let
|
||||||
python = python3.override {
|
python = python3.override {
|
||||||
packageOverrides = self: super: {
|
packageOverrides = self: super: {
|
||||||
|
aiofiles = super.aiofiles.overridePythonAttrs (oldAttrs: rec {
|
||||||
|
version = "0.8.0";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Tinche";
|
||||||
|
repo = "aiofiles";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0mr9pzji4vqyf2yzh8yxz5q7fm8mgmkimx1xh49wh625m72pxcap";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
asgiref = super.asgiref.overridePythonAttrs (oldAttrs: rec {
|
asgiref = super.asgiref.overridePythonAttrs (oldAttrs: rec {
|
||||||
version = "3.4.1";
|
version = "3.4.1";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
@ -41,22 +51,12 @@ let
|
|||||||
});
|
});
|
||||||
|
|
||||||
uvicorn = super.uvicorn.overridePythonAttrs (oldAttrs: rec {
|
uvicorn = super.uvicorn.overridePythonAttrs (oldAttrs: rec {
|
||||||
version = "0.15.0";
|
version = "0.16.0";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "encode";
|
owner = "encode";
|
||||||
repo = "uvicorn";
|
repo = "uvicorn";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "074smp3448wcazlhc7sb8r54l4kfavr6yks3w5x60zl1qpijf52r";
|
sha256 = "14jih6j4q2qp5c9rgl798i5p51b4y6zkkj434q2l1naw0csphk4s";
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec {
|
|
||||||
version = "0.36.13";
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "jstasiak";
|
|
||||||
repo = "python-zeroconf";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "aYNb67ESyz2Q2CKLhG+/Z8Xtt0Js8uf+xrVSEpY0X8c=";
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
let
|
let
|
||||||
callPackage = newScope self;
|
callPackage = newScope self;
|
||||||
|
|
||||||
version = "5.2.3";
|
version = "5.2.4";
|
||||||
|
|
||||||
# pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964
|
# pypi tarballs don't contain tests - https://github.com/platformio/platformio-core/issues/1964
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "platformio";
|
owner = "platformio";
|
||||||
repo = "platformio-core";
|
repo = "platformio-core";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0wbmwawn25srkyrd6hwrgli1himzsj08vbm76fgnpqdc84n78ckl";
|
sha256 = "1dhyxrdxrca669qm6alxxn2jmvcwlpqrx9kfwh4iqy9za5717ag9";
|
||||||
};
|
};
|
||||||
|
|
||||||
self = {
|
self = {
|
||||||
|
@ -6,7 +6,7 @@ index 416dccfd..896c3649 100644
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
@memoized(expire="1h")
|
@memoized(expire="1h")
|
||||||
def load_spdx_licenses():
|
def load_spdx_licenses():
|
||||||
- version = "3.14"
|
- version = "3.15"
|
||||||
- spdx_data_url = (
|
- spdx_data_url = (
|
||||||
- "https://raw.githubusercontent.com/spdx/license-list-data/"
|
- "https://raw.githubusercontent.com/spdx/license-list-data/"
|
||||||
- "v%s/json/licenses.json" % version
|
- "v%s/json/licenses.json" % version
|
||||||
|
Loading…
Reference in New Issue
Block a user