tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.array-record: 0.7.1 -> 0.7.2
Gaetan Lepage
11 months ago
96b4934c
5b4f8857
+7
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
array-record
default.nix
+7
-6
pkgs/development/python-modules/array-record/default.nix
reviewed
···
11
11
12
12
buildPythonPackage rec {
13
13
pname = "array-record";
14
14
-
version = "0.7.1";
14
14
+
version = "0.7.2";
15
15
format = "wheel";
16
16
17
17
-
disabled = pythonOlder "3.10" || pythonAtLeast "3.13";
17
17
+
disabled = pythonOlder "3.10" || pythonAtLeast "3.14";
18
18
19
19
src =
20
20
let
···
29
29
platform = "manylinux_2_17_x86_64.manylinux2014_x86_64";
30
30
hash =
31
31
{
32
32
-
cp310 = "sha256-JDaj1iJy1BQ7fHjmCbGQkNqG5rIRuwTwENbanM9a8hg=";
33
33
-
cp311 = "sha256-QVynMK9t0BnEtgdfbJ5T3s7N02i0XD2siUSRxKtrI+M=";
34
34
-
cp312 = "sha256-xJJGm6kLQ2/TzVYTrBtQ1Hqky1odHfbhe/g+PSSYt1c=";
32
32
+
cp310 = "sha256-UmMEehSqMqgLy1TcYoKUX/tG4Tf8UM2xgnuUrXOiHGo=";
33
33
+
cp311 = "sha256-cUN9Ws8A1xIN/n+/oGfv3mGUfmlsojLS69iWRpA2meM=";
34
34
+
cp312 = "sha256-S+cV0NhXXlOzSTr2ED1oUuk6U1gQA0ZXoGPaWxGp/ZQ=";
35
35
+
cp313 = "sha256-C7UvwXV0/NXA5dhr7NbUCW/KeUWg5w5F18aN2oAUXAQ=";
35
36
}
36
37
.${pyShortVersion} or (throw "${pname} is missing hash for ${pyShortVersion}");
37
38
};
···
45
44
pythonImportsCheck = [ "array_record" ];
46
45
47
46
meta = {
48
48
-
description = "ArrayRecord is a new file format derived from Riegeli, achieving a new frontier of IO efficiency";
47
47
+
description = "New file format derived from Riegeli, achieving a new frontier of IO efficiency";
49
48
homepage = "https://github.com/google/array_record";
50
49
license = lib.licenses.asl20;
51
50
maintainers = with lib.maintainers; [ GaetanLepage ];