Skip to content

Commit 4a7ecb9

Browse files
authored
python3Packages.pytools: 2025.1.2 -> 2025.1.5 (#405469)
2 parents 98fdcbd + ce220fe commit 4a7ecb9

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

pkgs/development/python-modules/firedrake/default.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,9 @@ buildPythonPackage rec {
140140
# required by script spydump
141141
matplotlib
142142
]
143-
++ pytools.optional-dependencies.siphash
144-
++ lib.optional stdenv.hostPlatform.isDarwin islpy;
143+
++ lib.optionals stdenv.hostPlatform.isDarwin [
144+
islpy
145+
];
145146

146147
postFixup = lib.optionalString stdenv.hostPlatform.isDarwin ''
147148
install_name_tool -add_rpath ${libsupermesh}/${python.sitePackages}/libsupermesh/lib \

pkgs/development/python-modules/pyopencl/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ buildPythonPackage rec {
6767
mako
6868
pytestCheckHook
6969
writableTmpDirAsHomeHook
70-
] ++ pytools.optional-dependencies.siphash;
70+
];
7171

7272
env = {
7373
CL_INC_DIR = "${opencl-headers}/include";

pkgs/development/python-modules/pytools/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@
1313

1414
buildPythonPackage rec {
1515
pname = "pytools";
16-
version = "2025.1.2";
16+
version = "2025.1.5";
1717
pyproject = true;
1818

1919
disabled = pythonOlder "3.8";
2020

2121
src = fetchPypi {
2222
inherit pname version;
23-
hash = "sha256-wA25T92aljmJlzLL+RvLKReGdRzJA4CwfXOBgspQ8rE=";
23+
hash = "sha256-im+YrLBc6UGRu+j4WnPz7J7Ut2PBxpoHgQWeGgF8YeU=";
2424
};
2525

2626
build-system = [ hatchling ];
2727

2828
dependencies = [
2929
platformdirs
30+
siphash24
3031
typing-extensions
3132
];
3233

3334
optional-dependencies = {
3435
numpy = [ numpy ];
35-
siphash = [ siphash24 ];
3636
};
3737

3838
nativeCheckInputs = [
3939
pytestCheckHook
40-
] ++ optional-dependencies.siphash;
40+
];
4141

4242
pythonImportsCheck = [
4343
"pytools"

0 commit comments

Comments
 (0)