blob: 329d34603cb722dd059604f3d2e4d8beee8c45de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 ];
};
}
|