python311Packages.pymiele: init at 0.1.7

This commit is contained in:
Jamie Magee 2023-12-05 10:30:50 -08:00
parent d8af5c83b6
commit b61b613974
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pymiele";
version = "0.1.7";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-nlilHcBdWpCIknhE/RRvcmuz1waNdmcPt++Vi3amvHg=";
};
nativeBuildInputs = [
aiohttp
async-timeout
];
# No tests
doCheck = false;
pythonImportsCheck = [
"pymiele"
];
meta = with lib; {
changelog = "https://github.com/astrandb/pymiele/releases/tag/v${version}";
description = "Lib for Miele integration with Home Assistant";
homepage = "https://github.com/astrandb/pymiele";
license = licenses.mit;
maintainers = with maintainers; [ jamiemagee ];
};
}

View File

@ -10440,6 +10440,8 @@ self: super: with self; {
pymicrobot = callPackage ../development/python-modules/pymicrobot { };
pymiele = callPackage ../development/python-modules/pymiele { };
pymilter = callPackage ../development/python-modules/pymilter { };
pymilvus = callPackage ../development/python-modules/pymilvus { };