From a19860d9f3ee623344d273cf8f095b6fc35f95c3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 Sep 2022 14:07:50 +0000 Subject: [PATCH 1/2] python310Packages.pytomorrowio: 0.3.4 -> 0.3.5 --- pkgs/development/python-modules/pytomorrowio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytomorrowio/default.nix b/pkgs/development/python-modules/pytomorrowio/default.nix index 8a6e374df0f6..14daed084032 100644 --- a/pkgs/development/python-modules/pytomorrowio/default.nix +++ b/pkgs/development/python-modules/pytomorrowio/default.nix @@ -10,13 +10,13 @@ buildPythonPackage rec { pname = "pytomorrowio"; - version = "0.3.4"; + version = "0.3.5"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-d4twa9bHaQ9XTHSb8pwJnnJ7tDH6vGpck3/8Y39tRaY="; + sha256 = "sha256-LFIQJJPqKlqLzEoX9ShfoASigPC5R+OWiW81VmjONe8="; }; propagatedBuildInputs = [ From e96412db82e1666ddb629d6b44262fb3a46263cf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 22 Sep 2022 19:59:42 +0200 Subject: [PATCH 2/2] python310Packages.pytomorrowio: update disabled --- pkgs/development/python-modules/pytomorrowio/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pytomorrowio/default.nix b/pkgs/development/python-modules/pytomorrowio/default.nix index 14daed084032..0b92b97fa5cf 100644 --- a/pkgs/development/python-modules/pytomorrowio/default.nix +++ b/pkgs/development/python-modules/pytomorrowio/default.nix @@ -12,11 +12,11 @@ buildPythonPackage rec { pname = "pytomorrowio"; version = "0.3.5"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - sha256 = "sha256-LFIQJJPqKlqLzEoX9ShfoASigPC5R+OWiW81VmjONe8="; + hash = "sha256-LFIQJJPqKlqLzEoX9ShfoASigPC5R+OWiW81VmjONe8="; }; propagatedBuildInputs = [ @@ -29,7 +29,9 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ "pytomorrowio" ]; + pythonImportsCheck = [ + "pytomorrowio" + ]; meta = { description = "Async Python package to access the Tomorrow.io API";