python313Packages.igloohome-api: init at 0.1.0

This commit is contained in:
Robert Schütz
2025-02-02 11:41:30 -08:00
parent 14e6ebd47b
commit 3f52bcfe73
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
aiohttp,
buildPythonPackage,
dacite,
fetchFromGitHub,
hatchling,
lib,
pyjwt,
}:
buildPythonPackage rec {
pname = "igloohome-api";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "keithle888";
repo = "igloohome-api";
tag = "v${version}";
hash = "sha256-CFxVZiga6008oNbacK12t7U8mOvL8YgEgQ82MsvZ46w=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
dacite
pyjwt
];
pythonImportsCheck = [ "igloohome_api" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/keithle888/igloohome-api/releases/tag/${src.tag}";
description = "Python package for using igloohome's API";
homepage = "https://github.com/keithle888/igloohome-api";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -6231,6 +6231,8 @@ self: super: with self; {
inherit (pkgs) cgal libxml2;
};
igloohome-api = callPackage ../development/python-modules/igloohome-api { };
ignite = callPackage ../development/python-modules/ignite { };
igraph = callPackage ../development/python-modules/igraph {