python3Packages.firedrake: 2025.4.1->2025.4.2 (#422129)

This commit is contained in:
Nick Cao
2025-07-18 19:41:50 -04:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
@@ -57,21 +57,21 @@ let
in
buildPythonPackage rec {
pname = "firedrake";
version = "2025.4.1";
version = "2025.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "firedrakeproject";
repo = "firedrake";
tag = version;
hash = "sha256-p/yquIKWynGY7UESDNBCf1cM8zpy8beuuRxSrSMvj7c=";
hash = "sha256-bAGmXoHPAdMYJMMQYVq98LYro1Vd+o9pfvXC3BsQUf0=";
};
postPatch =
# relax build-dependency petsc4py
''
substituteInPlace pyproject.toml --replace-fail \
"petsc4py==3.23.3" "petsc4py"
"petsc4py==3.23.4" "petsc4py"
''
+ lib.optionalString stdenv.hostPlatform.isLinux ''
substituteInPlace firedrake/petsc.py --replace-fail \
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "pyadjoint-ad";
version = "2025.04.0";
version = "2025.04.1";
pyproject = true;
src = fetchFromGitHub {
owner = "dolfin-adjoint";
repo = "pyadjoint";
tag = version;
hash = "sha256-ZNd8aJJ87OfQakScrkYqhCAh7qGctW/uqIoQjX5VEhI=";
hash = "sha256-S9A0qCatnnLuOkqWsEC4tjVY1HZqqi2T5iXu+WUoN24=";
};
build-system = [