From bb26a5de13964683d50e5a2ff27448c071e9dc48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 17 Apr 2022 18:09:07 +0000 Subject: [PATCH] python3Packages.wallbox: 0.4.6 -> 0.4.8 --- pkgs/development/python-modules/wallbox/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ];