Unverified Commit 497db84a authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.pymbolic: 2024.2.2 -> 2025.1 (#451309)

parents 87fcca6a e19b9403
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@
  sympy,
  islpy,
  matplotlib,
  immutabledict,

  # tests
  pytest,
@@ -129,6 +130,8 @@ buildPythonPackage rec {
    sympy
    # required by script spydump
    matplotlib
    # required by pyop2
    immutabledict
  ]
  ++ lib.optionals stdenv.hostPlatform.isDarwin [
    islpy
+7 −5
Original line number Diff line number Diff line
@@ -7,8 +7,9 @@
  hatchling,

  # dependencies
  immutabledict,
  constantdict,
  pytools,
  typing-extensions,

  # optional-dependencies
  matchpy,
@@ -20,21 +21,22 @@

buildPythonPackage rec {
  pname = "pymbolic";
  version = "2024.2.2";
  version = "2025.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "inducer";
    repo = "pymbolic";
    tag = "v${version}";
    hash = "sha256-07RWdEPhO+n9/FOvIWe4nm9fGekut9X6Tz4HlIkBSpo=";
    hash = "sha256-cn2EdhMn5qjK854AF5AY4Hv4M5Ib6gPRJk+kQvsFWRk=";
  };

  build-system = [ hatchling ];

  dependencies = [
    immutabledict
    constantdict
    pytools
    typing-extensions
  ];

  optional-dependencies = {
@@ -51,6 +53,6 @@ buildPythonPackage rec {
    homepage = "https://documen.tician.de/pymbolic/";
    changelog = "https://github.com/inducer/pymbolic/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = [ ];
    maintainers = with lib.maintainers; [ qbisi ];
  };
}