Files
nixpkgs/pkgs/development/python-modules/bcg/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

64 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 = {
homepage = "https://github.com/hardwario/bch-gateway";
description = "HARDWARIO Gateway (Python Application «bcg»)";
mainProgram = "bcg";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cynerd ];
};
}