Merge pull request #310310 from mweinelt/hass-sigstore
home-assistant: pin sigstore at 1.1.2
This commit is contained in:
commit
363eda4a42
2 changed files with 55 additions and 2 deletions
|
@ -387,6 +387,46 @@ let
|
|||
};
|
||||
});
|
||||
|
||||
# newer sigstore version transitivevly require pydantic>=2
|
||||
sigstore = super.sigstore.overridePythonAttrs (oldAttrs: rec {
|
||||
version = "1.1.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "sigstore";
|
||||
repo = "sigstore-python";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-QqY5GOBS75OkbSaF5Ua5jnJAhsYfVRuWLUoWDxX8Ino=";
|
||||
};
|
||||
dependencies = with self; [
|
||||
appdirs
|
||||
cryptography
|
||||
id
|
||||
pydantic
|
||||
pyjwt
|
||||
pyopenssl
|
||||
requests
|
||||
securesystemslib
|
||||
sigstore-protobuf-specs
|
||||
tuf
|
||||
];
|
||||
doCheck = false; # pytest too new
|
||||
});
|
||||
|
||||
sigstore-protobuf-specs = super.sigstore-protobuf-specs.overridePythonAttrs {
|
||||
version = "0.1.0";
|
||||
src = fetchPypi {
|
||||
pname = "sigstore-protobuf-specs";
|
||||
version = "0.1.0";
|
||||
hash = "sha256-YistIxYToo7T5mYKzYeBhnW06DSG9JoPDBmKxUdfy4E=";
|
||||
};
|
||||
nativeBuildInputs = with self; [
|
||||
flit-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
pythonRelaxDeps = [
|
||||
"betterproto"
|
||||
];
|
||||
};
|
||||
|
||||
tesla-powerwall = super.tesla-powerwall.overridePythonAttrs (oldAttrs: rec {
|
||||
version = "0.5.1";
|
||||
src = fetchFromGitHub {
|
||||
|
@ -397,6 +437,19 @@ let
|
|||
};
|
||||
});
|
||||
|
||||
tuf = super.tuf.overridePythonAttrs rec {
|
||||
version = "2.1.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "theupdateframework";
|
||||
repo = "python-tuf";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-MdPctAZuKn/YAwpMJ5gWU7PXJD3iK7bYprLXV52wNQQ=";
|
||||
};
|
||||
disabledTests = [
|
||||
"test_sign_failures"
|
||||
];
|
||||
};
|
||||
|
||||
versioningit = super.versioningit.overridePythonAttrs {
|
||||
doCheck = false;
|
||||
};
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "homeassistant-stubs";
|
||||
version = "2024.5.1";
|
||||
version = "2024.5.2";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = python.version != home-assistant.python.version;
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
owner = "KapJI";
|
||||
repo = "homeassistant-stubs";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-lYoYU39/ayZb8Ue25a7uSN5x8tihzjj5mGaVKWPfa1w=";
|
||||
hash = "sha256-bgXHEz8YuHcdGYzLpM7H8IVXixFC8Bz0i4SaatA49Qo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue