From 6430185342d7d6f8c10318c87e6023ff6cccfb73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 12 Jun 2025 21:05:15 -0700 Subject: [PATCH] python3Packages.bx-py-utils: 108 -> 109 Diff: https://github.com/boxine/bx_py_utils/compare/refs/tags/v108...refs/tags/v109 Changelog: https://github.com/boxine/bx_py_utils/releases/tag/v109 --- .../python-modules/bx-py-utils/default.nix | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/bx-py-utils/default.nix b/pkgs/development/python-modules/bx-py-utils/default.nix index 7c1a7c3a848f..e4d881163576 100644 --- a/pkgs/development/python-modules/bx-py-utils/default.nix +++ b/pkgs/development/python-modules/bx-py-utils/default.nix @@ -4,10 +4,10 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, - setuptools-scm, beautifulsoup4, boto3, freezegun, + hatchling, lxml, openpyxl, parameterized, @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "bx-py-utils"; - version = "108"; + version = "109"; disabled = pythonOlder "3.10"; @@ -29,14 +29,14 @@ buildPythonPackage rec { owner = "boxine"; repo = "bx_py_utils"; tag = "v${version}"; - hash = "sha256-VMGP5yl+7kiZ3Ww4ESJPHABDCMZG1VsVDgVoLnGU5r4="; + hash = "sha256-y1R48nGeTCpcBAzU3kqNQumRToKvQx9qst1kXPWDIlk="; }; postPatch = '' rm bx_py_utils_tests/publish.py ''; - build-system = [ setuptools-scm ]; + build-system = [ hatchling ]; pythonImportsCheck = [ "bx_py_utils.anonymize" @@ -76,15 +76,17 @@ buildPythonPackage rec { # too closely affected by bs4 updates "test_pretty_format_html" "test_assert_html_snapshot_by_css_selector" + # test accesses the internet + "test_happy_path" + # test assumes a virtual environment + "test_code_style" ]; - disabledTestPaths = - [ "bx_py_utils_tests/tests/test_project_setup.py" ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - # processify() doesn't work under darwin - # https://github.com/boxine/bx_py_utils/issues/80 - "bx_py_utils_tests/tests/test_processify.py" - ]; + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + # processify() doesn't work under darwin + # https://github.com/boxine/bx_py_utils/issues/80 + "bx_py_utils_tests/tests/test_processify.py" + ]; meta = { description = "Various Python utility functions";