blob: cdd337169575b5e52b7d9b098c8de2137bf63323 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "python-juicenet";
version = "1.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "jesserockz";
repo = "python-juicenet";
rev = "v${version}";
hash = "sha256-5RKnVwOfEHzFZCiC8OUpS8exKrENK+I3Ok45HlKEvtU=";
};
propagatedBuildInputs = [ aiohttp ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pyjuicenet" ];
meta = {
description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices";
homepage = "https://github.com/jesserockz/python-juicenet";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|