9 buildPythonPackage rec {
10 pname = "pyarrow-hotfix";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "pyarrow-hotfix";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-LlSbxIxvouzvlP6PB8J8fJaxWoRbxz4wTs7Gb5LbM4A=";
23 nativeBuildInputs = [ hatchling ];
25 pythonImportsCheck = [ "pyarrow_hotfix" ];
28 description = "Hotfix for the PyArrow security vulnerability CVE-2023-47248";
29 homepage = "https://github.com/pitrou/pyarrow-hotfix";
30 changelog = "https://github.com/pitrou/pyarrow-hotfix/releases/tag/v${version}";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ fab ];