From 4ab488f8f1830a0a45937b286315f3271ec9bcd2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 6 May 2023 00:26:40 +0200 Subject: [PATCH 1/2] python311Packages.pyutil: 3.3.2 -> 3.3.6 --- pkgs/development/python-modules/pyutil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyutil/default.nix b/pkgs/development/python-modules/pyutil/default.nix index c3b6310466f2..12a74c3f192c 100644 --- a/pkgs/development/python-modules/pyutil/default.nix +++ b/pkgs/development/python-modules/pyutil/default.nix @@ -9,11 +9,11 @@ buildPythonPackage rec { pname = "pyutil"; - version = "3.3.2"; + version = "3.3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-6hbSxVtvg0Eh3rYyp0VLCg+uJdXRMLFfa+l667B2yfw="; + hash = "sha256-XcPWu5xbq6u10Ldz4JQEXXVxLos0ry0psOKGAmaCZ8A="; }; propagatedBuildInputs = [ simplejson ]; From 87b69fd74792c3076c85579dcc796e8a813b42e3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 6 May 2023 01:22:17 +0200 Subject: [PATCH 2/2] python310Packages.blocksat-cli: 0.4.4 -> 0.4.5 --- .../python-modules/blocksat-cli/default.nix | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/blocksat-cli/default.nix b/pkgs/development/python-modules/blocksat-cli/default.nix index 9edd9ac0d97f..aaa20a4ae31c 100644 --- a/pkgs/development/python-modules/blocksat-cli/default.nix +++ b/pkgs/development/python-modules/blocksat-cli/default.nix @@ -1,6 +1,6 @@ -{ buildPythonPackage +{ lib +, buildPythonPackage , fetchPypi -, lib , distro , pysnmp , python-gnupg @@ -9,15 +9,19 @@ , sseclient-py , zfec , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "blocksat-cli"; - version = "0.4.4"; + version = "0.4.5"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-btwL8l5UdE9FwWXfuf1OHa8EwXDoFrh8tvOwr1yhyRg="; + hash = "sha256-BLR1eivvlbSTx/jr7Rl778apPBcoFCaKOsYOqxS6Fo4="; }; propagatedBuildInputs = [ @@ -30,7 +34,9 @@ buildPythonPackage rec { zfec ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + ]; disabledTestPaths = [ # disable tests which require being connected to the satellite @@ -42,7 +48,15 @@ buildPythonPackage rec { "blocksatcli/api/test_order.py" ]; - pythonImportsCheck = [ "blocksatcli" ]; + disabledTests = [ + "test_monitor_get_stats" + "test_monitor_update_with_reporting_enabled" + "test_erasure_recovery" + ]; + + pythonImportsCheck = [ + "blocksatcli" + ]; meta = with lib; { description = "Blockstream Satellite CLI";