lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bagels: 0.3.8 -> 0.3.9 (#418749)

authored by

Gaétan Lepage and committed by
GitHub
74c2aa54 d98f61ce

+30 -24
+30 -24
pkgs/by-name/ba/bagels/package.nix
··· 2 2 lib, 3 3 python3Packages, 4 4 fetchFromGitHub, 5 + writableTmpDirAsHomeHook, 5 6 }: 6 7 7 8 python3Packages.buildPythonApplication rec { 8 9 pname = "bagels"; 9 - version = "0.3.8"; 10 + version = "0.3.9"; 10 11 pyproject = true; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "EnhancedJax"; 14 15 repo = "bagels"; 15 16 tag = version; 16 - hash = "sha256-dmBu0HSRGs4LmJY2PHNlRf0RdodmN+ZM0brwuiNmPyU="; 17 + hash = "sha256-LlEQ0by6Si37e8FvC4agjLy8eanizSA1iq44BaQ8D5o="; 17 18 }; 18 19 19 20 build-system = with python3Packages; [ 20 21 hatchling 21 22 ]; 22 23 23 - pythonRelaxDeps = [ 24 - "aiohappyeyeballs" 25 - "aiohttp" 26 - "aiosignal" 27 - "attrs" 28 - "blinker" 29 - "click" 30 - "multidict" 31 - "platformdirs" 32 - "propcache" 33 - "pydantic-core" 34 - "pydantic" 35 - "pygments" 36 - "requests" 37 - "rich" 38 - "sqlalchemy" 39 - "textual" 40 - "typing-extensions" 41 - "werkzeug" 42 - "yarl" 43 - ]; 24 + pythonRelaxDeps = true; 44 25 45 26 dependencies = with python3Packages; [ 46 27 aiohappyeyeballs ··· 84 65 yarl 85 66 ]; 86 67 68 + nativeCheckInputs = 69 + [ 70 + writableTmpDirAsHomeHook 71 + ] 72 + ++ (with python3Packages; [ 73 + freezegun 74 + pytestCheckHook 75 + ]); 76 + 77 + disabledTests = [ 78 + # AssertionError: assert 1 == 0 79 + "test_delete_category" 80 + 81 + # AttributeError: 'NoneType' object has no attribute 'defaults' 82 + "test_basic_balance_calculation" 83 + "test_combined_balance_calculation" 84 + "test_get_days_in_period" 85 + "test_get_period_average" 86 + "test_get_period_figures" 87 + "test_get_start_end_of_period" 88 + "test_get_start_end_of_week" 89 + "test_split_balance_calculation" 90 + "test_transfer_balance_calculation" 91 + ]; 92 + 87 93 meta = { 88 94 homepage = "https://github.com/EnhancedJax/Bagels"; 89 - description = "Powerful expense tracker that lives in your terminal."; 95 + description = "Powerful expense tracker that lives in your terminal"; 90 96 longDescription = '' 91 97 Bagels expense tracker is a TUI application where you can track and analyse your money flow, with convenience oriented features and a complete interface. 92 98 '';