blob: d1b813da6ab2a8f1bbc8f0118cd85f90f5f60d66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
}:
buildPythonPackage rec {
pname = "pyarrow-hotfix";
version = "0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "pitrou";
repo = "pyarrow-hotfix";
tag = "v${version}";
hash = "sha256-9K7rQUSd+at1WghTP8DlD44Op2VkvN1vlzF3ZLEIaRE=";
};
nativeBuildInputs = [ hatchling ];
pythonImportsCheck = [ "pyarrow_hotfix" ];
meta = {
description = "Hotfix for the PyArrow security vulnerability CVE-2023-47248";
homepage = "https://github.com/pitrou/pyarrow-hotfix";
changelog = "https://github.com/pitrou/pyarrow-hotfix/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|