9 buildPythonPackage rec {
10 pname = "python-juicenet";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "python-juicenet";
20 hash = "sha256-5RKnVwOfEHzFZCiC8OUpS8exKrENK+I3Ok45HlKEvtU=";
23 propagatedBuildInputs = [ aiohttp ];
25 # no tests implemented
28 pythonImportsCheck = [ "pyjuicenet" ];
31 description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices";
32 homepage = "https://github.com/jesserockz/python-juicenet";
33 license = licenses.mit;
34 maintainers = with maintainers; [ dotlambda ];