3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #146627 from fabaff/luxtronik

python3Packages.luxtronik: init at 0.3.9
This commit is contained in:
Fabian Affolter 2021-11-20 09:35:20 +01:00 committed by GitHub
commit dc17300407
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "luxtronik";
version = "0.3.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Bouni";
repo = "python-luxtronik";
rev = version;
sha256 = "mScdTQ82tV5fyy1S0YDDOz1UC4VB0OmSXD5gHp53WsE=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"luxtronik"
];
meta = with lib; {
description = "Python library to interact with Luxtronik heatpump controllers";
homepage = "https://github.com/Bouni/python-luxtronik";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -4543,6 +4543,8 @@ in {
luftdaten = callPackage ../development/python-modules/luftdaten { };
luxtronik = callPackage ../development/python-modules/luxtronik { };
lupa = callPackage ../development/python-modules/lupa { };
lupupy = callPackage ../development/python-modules/lupupy { };