blob: 9e18426ad6b4ffa3a27dedd6a033f8a0868970f0 (
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
35
36
|
{
lib,
buildPythonPackage,
colorlog,
fetchPypi,
pyserial,
}:
buildPythonPackage rec {
pname = "pypca";
version = "0.0.13";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0y0p2rm22x21mykipiv42fjc79b0969qsbhk3cqkrdnqwh5psbdl";
};
propagatedBuildInputs = [
colorlog
pyserial
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pypca" ];
meta = {
description = "Python library for interacting with the PCA 301 smart plugs";
mainProgram = "pypca";
homepage = "https://github.com/majuss/pypca";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|