Unverified Commit e145386e authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.array-record: 0.7.1 -> 0.7.2 (#403326)

parents 1bf1dbbf 96b4934c
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -11,10 +11,10 @@

buildPythonPackage rec {
  pname = "array-record";
  version = "0.7.1";
  version = "0.7.2";
  format = "wheel";

  disabled = pythonOlder "3.10" || pythonAtLeast "3.13";
  disabled = pythonOlder "3.10" || pythonAtLeast "3.14";

  src =
    let
@@ -29,9 +29,10 @@ buildPythonPackage rec {
      platform = "manylinux_2_17_x86_64.manylinux2014_x86_64";
      hash =
        {
          cp310 = "sha256-JDaj1iJy1BQ7fHjmCbGQkNqG5rIRuwTwENbanM9a8hg=";
          cp311 = "sha256-QVynMK9t0BnEtgdfbJ5T3s7N02i0XD2siUSRxKtrI+M=";
          cp312 = "sha256-xJJGm6kLQ2/TzVYTrBtQ1Hqky1odHfbhe/g+PSSYt1c=";
          cp310 = "sha256-UmMEehSqMqgLy1TcYoKUX/tG4Tf8UM2xgnuUrXOiHGo=";
          cp311 = "sha256-cUN9Ws8A1xIN/n+/oGfv3mGUfmlsojLS69iWRpA2meM=";
          cp312 = "sha256-S+cV0NhXXlOzSTr2ED1oUuk6U1gQA0ZXoGPaWxGp/ZQ=";
          cp313 = "sha256-C7UvwXV0/NXA5dhr7NbUCW/KeUWg5w5F18aN2oAUXAQ=";
        }
        .${pyShortVersion} or (throw "${pname} is missing hash for ${pyShortVersion}");
    };
@@ -44,7 +45,7 @@ buildPythonPackage rec {
  pythonImportsCheck = [ "array_record" ];

  meta = {
    description = "ArrayRecord is a new file format derived from Riegeli, achieving a new frontier of IO efficiency";
    description = "New file format derived from Riegeli, achieving a new frontier of IO efficiency";
    homepage = "https://github.com/google/array_record";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ GaetanLepage ];