From cf3fd4d37d6a8fe6f3777b088ce614950c1e9c1e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 24 Jan 2022 08:30:17 +0100 Subject: [PATCH] python3Packages.heatzypy: 1.4.2 -> 2.0.1 --- pkgs/development/python-modules/heatzypy/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/heatzypy/default.nix b/pkgs/development/python-modules/heatzypy/default.nix index a0647d2dd77d..39d970272b14 100644 --- a/pkgs/development/python-modules/heatzypy/default.nix +++ b/pkgs/development/python-modules/heatzypy/default.nix @@ -1,4 +1,5 @@ { lib +, aiohttp , buildPythonPackage , fetchFromGitHub , requests @@ -8,7 +9,7 @@ buildPythonPackage rec { pname = "heatzypy"; - version = "1.4.2"; + version = "2.0.1"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -17,10 +18,11 @@ buildPythonPackage rec { owner = "Cyr-ius"; repo = pname; rev = version; - sha256 = "nENuH2u9RtWq86TW/sDFFeYS8GTWGj7qfcFS8AHFRGk="; + sha256 = "sha256-PnDsgTfr2F/fgbONP2qvuPhbw3X50AqriEmsFFjll2Y="; }; propagatedBuildInputs = [ + aiohttp requests ];