python313Packages.eheimdigital: init at 1.0.3

This commit is contained in:
Robert Schütz
2025-01-09 07:19:46 -08:00
parent f5a3e2b6b2
commit 754c1a1526
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
hatchling,
lib,
yarl,
}:
buildPythonPackage rec {
pname = "eheimdigital";
version = "1.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "autinerd";
repo = "eheimdigital";
tag = version;
hash = "sha256-oWMlQIj8q2UVpW0xyPnoblT+ryHwCn9PCk2vugXyh2c=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
yarl
];
pythonImportsCheck = [ "eheimdigital" ];
# upstream tests are dysfunctional
doCheck = false;
meta = {
changelog = "https://github.com/autinerd/eheimdigital/releases/tag/${src.tag}";
description = "Offers a Python API for the EHEIM Digital smart aquarium devices";
homepage = "https://github.com/autinerd/eheimdigital";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -4078,6 +4078,8 @@ self: super: with self; {
eggdeps = callPackage ../development/python-modules/eggdeps { };
eheimdigital = callPackage ../development/python-modules/eheimdigital { };
eigenpy = callPackage ../development/python-modules/eigenpy { };
einops = callPackage ../development/python-modules/einops { };