python3Packages.hatasmota: 0.10.0 -> 0.10.1 (#441955)

Changed files
+4 -4
pkgs
development
python-modules
hatasmota
+4 -4
pkgs/development/python-modules/hatasmota/default.nix
···
buildPythonPackage rec {
pname = "hatasmota";
-
version = "0.10.0";
pyproject = true;
-
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "emontnemery";
repo = "hatasmota";
tag = version;
-
hash = "sha256-T4C0lgVKmlHHuVPzrqC3Mm089TfzY2JCZK73be1W5+w=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "Python module to help parse and construct Tasmota MQTT messages";
homepage = "https://github.com/emontnemery/hatasmota";
-
changelog = "https://github.com/emontnemery/hatasmota/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
···
buildPythonPackage rec {
pname = "hatasmota";
+
version = "0.10.1";
pyproject = true;
+
disabled = pythonOlder "3.13";
src = fetchFromGitHub {
owner = "emontnemery";
repo = "hatasmota";
tag = version;
+
hash = "sha256-Be6W7+DMpMXezEQDkEN9+ei7cJXP1bGIURuXlMNyR0Y=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "Python module to help parse and construct Tasmota MQTT messages";
homepage = "https://github.com/emontnemery/hatasmota";
+
changelog = "https://github.com/emontnemery/hatasmota/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};