Merge pull request #288141 from mweinelt/hass-slugify

home-assistant: pin python-slugify at 8.0.1
This commit is contained in:
Martin Weinelt 2024-02-11 23:01:19 +01:00 committed by GitHub
commit c715931f52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -324,6 +324,16 @@ let
};
});
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
version = "8.0.1";
src = fetchFromGitHub {
owner = "un33k";
repo = "python-slugify";
rev = "refs/tags/v${version}";
hash = "sha256-MJac63XjgWdUQdyyEm8O7gAGVszmHxZzRF4frJtR0BU=";
};
});
pytradfri = super.pytradfri.overridePythonAttrs (oldAttrs: rec {
version = "9.0.1";
src = fetchFromGitHub {