{ lib , buildPythonPackage , pythonOlder , fetchPypi , aenum , requests , simplejson }: buildPythonPackage rec { pname = "wallbox"; version = "0.4.8"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; sha256 = "f8965b0ae3a873f570986e712a4e667d0b6634c9e3afb51fbd5596856412878c"; }; propagatedBuildInputs = [ aenum requests simplejson ]; # no tests implemented doCheck = false; pythonImportsCheck = [ "wallbox" ]; meta = with lib; { description = "Module for interacting with Wallbox EV charger api"; homepage = "https://github.com/cliviu74/wallbox"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }