File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
pkgs/development/python-modules/hatasmota Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 11{
22 lib ,
3+ aiohttp ,
34 attrs ,
45 buildPythonPackage ,
56 fetchFromGitHub ,
1011
1112buildPythonPackage 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}
You can’t perform that action at this time.
0 commit comments