Robert Schütz
2025-04-11 11:46:51 -07:00
parent 3a108f3ce3
commit 20fb935272
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "pytibber";
version = "0.30.8";
version = "0.31.0";
pyproject = true;
disabled = pythonOlder "3.11";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Danielhiversen";
repo = "pyTibber";
tag = version;
hash = "sha256-lUxID4D9wxKvDF3epEznTof9lHYKFniTDYv7/gvW7Z4=";
hash = "sha256-NCzgh/hPbbKgJLvfOzXSkOCrV53w/F0F5TglQ2gOAJk=";
};
build-system = [ setuptools ];
@@ -36,18 +36,16 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [ "test/test.py" ];
# Tests access network
doCheck = false;
pythonImportsCheck = [ "tibber" ];
meta = with lib; {
meta = {
description = "Python library to communicate with Tibber";
homepage = "https://github.com/Danielhiversen/pyTibber";
changelog = "https://github.com/Danielhiversen/pyTibber/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
changelog = "https://github.com/Danielhiversen/pyTibber/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}