lol

python313Packages.py-schluter: init at 0.1.7 (#428762)

authored by

Martin Weinelt and committed by
GitHub
08f89f12 80f2162d

+38 -1
+34
pkgs/development/python-modules/py-schluter/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + requests, 6 + setuptools, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "py-schluter"; 11 + version = "0.1.7"; 12 + pyproject = true; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-FS6aflpRDoIHsE4XIf93Q6MsO9ApRbU+efm7zWpw/dY="; 17 + }; 18 + 19 + build-system = [ setuptools ]; 20 + 21 + dependencies = [ requests ]; 22 + 23 + # Package has no tests 24 + doCheck = false; 25 + 26 + pythonImportsCheck = [ "schluter" ]; 27 + 28 + meta = { 29 + description = "Python API for Schluter DITRA-HEAT thermostat"; 30 + homepage = "https://github.com/prairieapps/py-schluter"; 31 + license = lib.licenses.mit; 32 + maintainers = [ lib.maintainers.jamiemagee ]; 33 + }; 34 + }
+2 -1
pkgs/servers/home-assistant/component-packages.nix
··· 5093 5093 ]; 5094 5094 "schluter" = 5095 5095 ps: with ps; [ 5096 - ]; # missing inputs: py-schluter 5096 + py-schluter 5097 + ]; 5097 5098 "scl" = 5098 5099 ps: with ps; [ 5099 5100 ];
+2
pkgs/top-level/python-packages.nix
··· 12249 12249 12250 12250 py-rust-stemmers = callPackage ../development/python-modules/py-rust-stemmers { }; 12251 12251 12252 + py-schluter = callPackage ../development/python-modules/py-schluter { }; 12253 + 12252 12254 py-scrypt = callPackage ../development/python-modules/py-scrypt { }; 12253 12255 12254 12256 py-serializable = callPackage ../development/python-modules/py-serializable { };