blob: cc5ef5f923d2dcde1c438a06566ac75a7bc21911 (
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,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "proliphix";
version = "0.5.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Tf6gTRofZXY6ikrXBARgp6grzZGQMjvN5njT+7SRZNQ=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "proliphix" ];
meta = {
description = "API for Proliphix nt10e network thermostat";
homepage = "https://github.com/sdague/proliphix";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|