Merge pull request #327897 from Cynerd/bcg-python312

python312Packages.bcg: fix for Python 3.12
This commit is contained in:
Peder Bergebakken Sundt 2024-07-24 15:57:46 +02:00 committed by GitHub
commit e599ef1514
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,9 +2,11 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
appdirs,
click,
click-log,
looseversion,
paho-mqtt,
pyaml,
pyserial,
@ -23,6 +25,13 @@ buildPythonPackage rec {
sha256 = "2Yh5MeIv+BIxjoO9GOPqq7xTAFhyBvnxPy7DeO2FrkI=";
};
patches = [
(fetchpatch { # https://github.com/hardwario/bch-gateway/pull/19
name = "bcg-fix-import-with-Python-3.12.patch";
url = "https://github.com/hardwario/bch-gateway/pull/19/commits/1314c892992d8914802b6c42602c39f6a1418fca.patch";
hash = "sha256-dNiBppXjPSMUe2yiiSc9gGbAc8l4mI41wWq+g7PkD/Y=";
})
];
postPatch = ''
sed -ri 's/@@VERSION@@/${version}/g' \
bcg/__init__.py setup.py
@ -32,6 +41,7 @@ buildPythonPackage rec {
appdirs
click
click-log
looseversion
paho-mqtt
pyaml
pyserial