Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / array-record / default.nix
blobc37eec6baba02dca7290def0ed85e6e6132455d3
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , pythonAtLeast
5 , python
6 , fetchPypi
7 , absl-py
8 , etils
9 , importlib-resources
10 , typing-extensions
11 , zipp
14 buildPythonPackage rec {
15   pname = "array-record";
16   version = "0.5.0";
17   format = "wheel";
19   # As of 2023-10-31, PyPI includes wheels for Python 3.9, 3.10, and 3.11.
20   disabled = pythonOlder "3.9" || pythonAtLeast "3.12";
22   src = let
23     pyShortVersion = "cp${builtins.replaceStrings ["."] [""] python.pythonVersion}";
24   in fetchPypi {
25     inherit version format;
26     pname = "array_record";
27     dist = pyShortVersion;
28     python = pyShortVersion;
29     abi = pyShortVersion;
30     platform = "manylinux_2_17_x86_64.manylinux2014_x86_64";
31     hash = {
32       cp39 = "sha256-BzMOVue7E1S1+5+XTcPELko81ujc9MbmqLhNsU7pqO0=";
33       cp310 = "sha256-eUD9pQu9GsbV8MPD1MiF3Ihr+zYioSOo6P15hYIwPYo=";
34       cp311 = "sha256-rAmkI3EIZPYiXrxFowfDC0Gf3kRw0uX0i6Kx6Zu+hNM=";
35     }.${pyShortVersion} or (throw "${pname} is missing hash for ${pyShortVersion}");
36   };
38   propagatedBuildInputs = [
39     absl-py
40     etils
41     importlib-resources
42     typing-extensions
43     zipp
44   ];
46   pythonImportsCheck = [ "array_record" ];
48   meta = with lib; {
49     description = "ArrayRecord is a new file format derived from Riegeli, achieving a new frontier of IO efficiency";
50     homepage = "https://github.com/google/array_record";
51     license = licenses.asl20;
52     maintainers = with maintainers; [ GaetanLepage ];
53     platforms = [ "x86_64-linux" ];
54   };