Skip to content

Commit

Permalink
python313Packages.hatasmota: 0.9.2 -> 0.10.0 (NixOS#385367)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Feb 26, 2025
2 parents e86c2bd + b37ba6c commit 24cdb83
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/hatasmota/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
aiohttp,
attrs,
buildPythonPackage,
fetchFromGitHub,
Expand All @@ -10,21 +11,22 @@

buildPythonPackage rec {
pname = "hatasmota";
version = "0.9.2";
version = "0.10.0";
pyproject = true;

disabled = pythonOlder "3.6";

src = fetchFromGitHub {
owner = "emontnemery";
repo = pname;
repo = "hatasmota";
tag = version;
hash = "sha256-m40ZK1+cfWgrwWftFqExUZidCrbDMC1Sfshugqrp5QM=";
hash = "sha256-T4C0lgVKmlHHuVPzrqC3Mm089TfzY2JCZK73be1W5+w=";
};

nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];

propagatedBuildInputs = [
dependencies = [
aiohttp
attrs
voluptuous
];
Expand All @@ -38,7 +40,7 @@ buildPythonPackage rec {
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 = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit 24cdb83

Please sign in to comment.