22 buildPythonPackage rec {
27 src = fetchFromGitHub {
28 owner = "patrick-kidger";
30 rev = "refs/tags/v${version}";
31 hash = "sha256-lZb2NobSELz8kviPd4Z8PPEEaydaEC5Z6eb9pzC7Ki8=";
34 build-system = [ hatchling ];
50 pythonImportsCheck = [ "equinox" ];
53 description = "JAX library based around a simple idea: represent parameterised functions (such as neural networks) as PyTrees";
54 changelog = "https://github.com/patrick-kidger/equinox/releases/tag/v${version}";
55 homepage = "https://github.com/patrick-kidger/equinox";
56 license = lib.licenses.asl20;
57 maintainers = with lib.maintainers; [ GaetanLepage ];