Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / luxtronik / default.nix
blob14e0cece25c4c631241cb10540174d2362841cd7
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , poetry-core
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "luxtronik";
11   version = "0.3.14";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "Bouni";
18     repo = "python-luxtronik";
19     rev = version;
20     hash = "sha256-7TuvqOAb/MUumOF6BKTRLOJuvteqZPmFUXXsuwEpmOM=";
21   };
23   # Project has no tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "luxtronik"
28   ];
30   meta = with lib; {
31     description = "Python library to interact with Luxtronik heatpump controllers";
32     homepage = "https://github.com/Bouni/python-luxtronik";
33     license = licenses.mit;
34     maintainers = with maintainers; [ fab ];
35   };