Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.array-record: 0.7.2 -> 0.8.1 (#448368)

authored by Fabian Affolter and committed by GitHub d8be3cdc 9e176213

Changed files
+5 -6
pkgs
development
python-modules
array-record
+5 -6
pkgs/development/python-modules/array-record/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "array-record"; 14 - version = "0.7.2"; 14 + version = "0.8.1"; 15 15 format = "wheel"; 16 16 17 17 disabled = pythonOlder "3.10" || pythonAtLeast "3.14"; ··· 26 26 dist = pyShortVersion; 27 27 python = pyShortVersion; 28 28 abi = pyShortVersion; 29 - platform = "manylinux_2_17_x86_64.manylinux2014_x86_64"; 29 + platform = "manylinux2014_x86_64.manylinux_2_17_x86_64"; 30 30 hash = 31 31 { 32 - cp310 = "sha256-UmMEehSqMqgLy1TcYoKUX/tG4Tf8UM2xgnuUrXOiHGo="; 33 - cp311 = "sha256-cUN9Ws8A1xIN/n+/oGfv3mGUfmlsojLS69iWRpA2meM="; 34 - cp312 = "sha256-S+cV0NhXXlOzSTr2ED1oUuk6U1gQA0ZXoGPaWxGp/ZQ="; 35 - cp313 = "sha256-C7UvwXV0/NXA5dhr7NbUCW/KeUWg5w5F18aN2oAUXAQ="; 32 + cp311 = "sha256-CQ2ChYqTHjdU4QYvXGLCCudk8+XyTnnqkFQ5OAQ4Oo0="; 33 + cp312 = "sha256-AF+29PToM7LeHE5RxiCtajCok7RtwWgDnZuzG3FGYHA="; 34 + cp313 = "sha256-N7uALh/cmO22CoWVUsfn1JThQc85C/tzUKz9Y0Z9rq4="; 36 35 } 37 36 .${pyShortVersion} or (throw "${pname} is missing hash for ${pyShortVersion}"); 38 37 };