python313Packages.py-schluter: init at 0.1.7

This commit is contained in:
Jamie Magee
2025-07-26 21:13:55 -07:00
parent e960a8fb5b
commit 9fc4a80895
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "py-schluter";
version = "0.1.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-FS6aflpRDoIHsE4XIf93Q6MsO9ApRbU+efm7zWpw/dY=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "schluter" ];
meta = {
description = "Python API for Schluter DITRA-HEAT thermostat";
homepage = "https://github.com/prairieapps/py-schluter";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -12247,6 +12247,8 @@ self: super: with self; {
py-rust-stemmers = callPackage ../development/python-modules/py-rust-stemmers { };
py-schluter = callPackage ../development/python-modules/py-schluter { };
py-scrypt = callPackage ../development/python-modules/py-scrypt { };
py-serializable = callPackage ../development/python-modules/py-serializable { };