Unverified Commit 1e09ec2f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.flowjax: 17.2.0 -> 17.2.1 (#477413)

parents bfcb4ef6 36b6b32e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -21,16 +21,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "flowjax";
  version = "17.2.0";
  version = "17.2.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "danielward27";
    repo = "flowjax";
    tag = "v${version}";
    hash = "sha256-gaHlXm1M41njtgQt+f77Wd7q+PQ+1ipZiLtv59z1ma4=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-ghK3CxBlybajsvhjzjyDapUC71JwMz+njHn4hAztVUM=";
  };

  build-system = [
@@ -58,8 +58,8 @@ buildPythonPackage rec {
  meta = {
    description = "Distributions, bijections and normalizing flows using Equinox and JAX";
    homepage = "https://github.com/danielward27/flowjax";
    changelog = "https://github.com/danielward27/flowjax/releases/tag/${src.tag}";
    changelog = "https://github.com/danielward27/flowjax/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
})