Loading pkgs/development/python-modules/flowjax/default.nix 0 → 100644 +65 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system hatchling, # dependencies equinox, jax, jaxtyping, optax, paramax, tqdm, # tests beartype, numpyro, pytest-xdist, pytestCheckHook, }: buildPythonPackage rec { pname = "flowjax"; version = "17.1.1"; pyproject = true; src = fetchFromGitHub { owner = "danielward27"; repo = "flowjax"; tag = "v${version}"; hash = "sha256-CLtkO7Lr+FpC/RHnqDSmevpJ3/3EfuILrQSbcdNTqsI="; }; build-system = [ hatchling ]; dependencies = [ equinox jax jaxtyping optax paramax tqdm ]; pythonImportsCheck = [ "flowjax" ]; nativeCheckInputs = [ beartype numpyro pytest-xdist pytestCheckHook ]; 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/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4934,6 +4934,8 @@ self: super: with self; { flower = callPackage ../development/python-modules/flower { }; flowjax = callPackage ../development/python-modules/flowjax { }; flowlogs-reader = callPackage ../development/python-modules/flowlogs-reader { }; flowmc = callPackage ../development/python-modules/flowmc { }; Loading Loading
pkgs/development/python-modules/flowjax/default.nix 0 → 100644 +65 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system hatchling, # dependencies equinox, jax, jaxtyping, optax, paramax, tqdm, # tests beartype, numpyro, pytest-xdist, pytestCheckHook, }: buildPythonPackage rec { pname = "flowjax"; version = "17.1.1"; pyproject = true; src = fetchFromGitHub { owner = "danielward27"; repo = "flowjax"; tag = "v${version}"; hash = "sha256-CLtkO7Lr+FpC/RHnqDSmevpJ3/3EfuILrQSbcdNTqsI="; }; build-system = [ hatchling ]; dependencies = [ equinox jax jaxtyping optax paramax tqdm ]; pythonImportsCheck = [ "flowjax" ]; nativeCheckInputs = [ beartype numpyro pytest-xdist pytestCheckHook ]; 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/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4934,6 +4934,8 @@ self: super: with self; { flower = callPackage ../development/python-modules/flower { }; flowjax = callPackage ../development/python-modules/flowjax { }; flowlogs-reader = callPackage ../development/python-modules/flowlogs-reader { }; flowmc = callPackage ../development/python-modules/flowmc { }; Loading