bch: init at 1.2.1

This commit is contained in:
Karel Kočí 2023-03-28 17:28:17 +02:00
parent 83352e935e
commit b225ae4a61
No known key found for this signature in database
GPG key ID: D83BD732AC2BD828
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, click-log
, paho-mqtt
, pyaml
}:
buildPythonPackage rec {
pname = "bch";
version = "1.2.1";
src = fetchFromGitHub {
owner = "hardwario";
repo = "bch-control-tool";
rev = "v${version}";
sha256 = "/C+NbJ0RrWZ/scv/FiRBTh4h7u0xS4mHVDWQ0WwmlEY=";
};
propagatedBuildInputs = [
click
click-log
paho-mqtt
pyaml
];
postPatch = ''
sed -ri 's/@@VERSION@@/${version}/g' \
bch/cli.py setup.py
'';
pythonImportsCheck = [ "bch" ];
meta = with lib; {
homepage = "https://github.com/hardwario/bch-control-tool";
description = "HARDWARIO Hub Control Tool";
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ cynerd ];
};
}

View file

@ -1269,6 +1269,8 @@ self: super: with self; {
bcdoc = callPackage ../development/python-modules/bcdoc { };
bch = callPackage ../development/python-modules/bch { };
bcrypt = if stdenv.hostPlatform.system == "i686-linux" then
callPackage ../development/python-modules/bcrypt/3.nix { }
else