diff --git a/pkgs/development/python-modules/wallbox/default.nix b/pkgs/development/python-modules/wallbox/default.nix index a1136d89342..53ccd00a75f 100644 --- a/pkgs/development/python-modules/wallbox/default.nix +++ b/pkgs/development/python-modules/wallbox/default.nix @@ -2,22 +2,24 @@ , buildPythonPackage , pythonOlder , fetchPypi +, aenum , requests , simplejson }: buildPythonPackage rec { pname = "wallbox"; - version = "0.4.6"; + version = "0.4.8"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "651c61e2264258382d1f54c4f0bf6bcd198482a744d8f1db3dd73084c240d9bb"; + sha256 = "f8965b0ae3a873f570986e712a4e667d0b6634c9e3afb51fbd5596856412878c"; }; propagatedBuildInputs = [ + aenum requests simplejson ];