File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
pkgs/development/python-modules Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff 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 \
Original file line number Diff line number Diff 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" ;
Original file line number Diff line number Diff line change 1313
1414buildPythonPackage 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"
You can’t perform that action at this time.
0 commit comments