Skip to content

Commit b37ba6c

Browse files
committed
python313Packages.hatasmota: 0.9.2 -> 0.10.0
Changelog: https://github.com/emontnemery/hatasmota/releases/tag/0.10.0
1 parent 0c8264c commit b37ba6c

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

pkgs/development/python-modules/hatasmota/default.nix

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
lib,
3+
aiohttp,
34
attrs,
45
buildPythonPackage,
56
fetchFromGitHub,
@@ -10,21 +11,22 @@
1011

1112
buildPythonPackage rec {
1213
pname = "hatasmota";
13-
version = "0.9.2";
14+
version = "0.10.0";
1415
pyproject = true;
1516

1617
disabled = pythonOlder "3.6";
1718

1819
src = fetchFromGitHub {
1920
owner = "emontnemery";
20-
repo = pname;
21+
repo = "hatasmota";
2122
tag = version;
22-
hash = "sha256-m40ZK1+cfWgrwWftFqExUZidCrbDMC1Sfshugqrp5QM=";
23+
hash = "sha256-T4C0lgVKmlHHuVPzrqC3Mm089TfzY2JCZK73be1W5+w=";
2324
};
2425

25-
nativeBuildInputs = [ setuptools ];
26+
build-system = [ setuptools ];
2627

27-
propagatedBuildInputs = [
28+
dependencies = [
29+
aiohttp
2830
attrs
2931
voluptuous
3032
];
@@ -38,7 +40,7 @@ buildPythonPackage rec {
3840
description = "Python module to help parse and construct Tasmota MQTT messages";
3941
homepage = "https://github.com/emontnemery/hatasmota";
4042
changelog = "https://github.com/emontnemery/hatasmota/releases/tag/${version}";
41-
license = with licenses; [ mit ];
43+
license = licenses.mit;
4244
maintainers = with maintainers; [ fab ];
4345
};
4446
}

0 commit comments

Comments
 (0)