blob: e655ea33481bb6e37fc9d54001a7dc0f7c19d962 (
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
37
38
39
|
{
lib,
buildPythonPackage,
fetchPypi,
pyotp,
pyppeteer,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "oru";
version = "0.2.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-wLD1v98Ez5rexQEvtR7XBiY40I8Lb2X9WzU9kcE5iVY=";
};
build-system = [ setuptools ];
dependencies = [
pyotp
pyppeteer
requests
];
doCheck = false;
pythonImportsCheck = [ "oru" ];
meta = {
description = "Python client for Orange and Rockland Utility smart energy meters";
homepage = "https://github.com/bvlaicu/oru";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|