evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyarrow-hotfix / default.nix
blobec0cf110311bdf733cf95952328600c6df39d366
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pyarrow-hotfix";
11   version = "0.6";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "pitrou";
18     repo = "pyarrow-hotfix";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-LlSbxIxvouzvlP6PB8J8fJaxWoRbxz4wTs7Gb5LbM4A=";
21   };
23   nativeBuildInputs = [ hatchling ];
25   pythonImportsCheck = [ "pyarrow_hotfix" ];
27   meta = with lib; {
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 ];
33   };