f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
appdirs,
|
|
click,
|
|
click-log,
|
|
looseversion,
|
|
paho-mqtt,
|
|
pyaml,
|
|
pyserial,
|
|
schema,
|
|
simplejson,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "bcg";
|
|
version = "1.17.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hardwario";
|
|
repo = "bch-gateway";
|
|
rev = "v${version}";
|
|
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
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
click
|
|
click-log
|
|
looseversion
|
|
paho-mqtt
|
|
pyaml
|
|
pyserial
|
|
schema
|
|
simplejson
|
|
];
|
|
|
|
pythonImportsCheck = [ "bcg" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hardwario/bch-gateway";
|
|
description = "HARDWARIO Gateway (Python Application «bcg»)";
|
|
mainProgram = "bcg";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cynerd ];
|
|
};
|
|
}
|