blob: adc16ed59cd9b5a4161a0f41ce19b665563361b2 (
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,
aiohttp,
buildPythonPackage,
fetchPypi,
lxml,
}:
buildPythonPackage rec {
pname = "pykmtronic";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-8qLyBJp7C93x0PWbgDAtNEDJ5VLNfwZ3DRZfudRCBgo=";
};
propagatedBuildInputs = [
aiohttp
lxml
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pykmtronic" ];
meta = {
description = "Python client to interface with KM-Tronic web relays";
homepage = "https://github.com/dgomes/pykmtronic";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|