nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.beanquery: Fix build with beancount 3.2.0

+9
+9
pkgs/development/python-modules/beanquery/default.nix
··· 4 4 click, 5 5 buildPythonPackage, 6 6 fetchFromGitHub, 7 + fetchpatch2, 7 8 python-dateutil, 8 9 pytestCheckHook, 9 10 setuptools, ··· 21 20 tag = "v${version}"; 22 21 hash = "sha256-O7+WCF7s50G14oNTvJAOTvgSoNR9fWcn/m1jv7RHmK8="; 23 22 }; 23 + 24 + patches = [ 25 + (fetchpatch2 { 26 + name = "beancount-workaround.patch"; 27 + url = "https://github.com/beancount/beanquery/commit/aa0776285a25baeedf151e9f582bef0314f76004.patch?full_index=1"; 28 + hash = "sha256-hWL1CDsBSbMqufEQrtEncmyUr5L5VJI+i4xQtnAvQd8="; 29 + }) 30 + ]; 24 31 25 32 build-system = [ setuptools ]; 26 33