17 self = buildPythonPackage rec {
22 src = fetchFromGitHub {
25 rev = "refs/tags/v${version}";
26 hash = "sha256-22dIuIjFgqRmV9AQok02skVt7fm17/WpzBm3FrJ6/zs=";
33 propagatedBuildInputs = [
50 # Enable tests via passthru to avoid cyclic dependency with equinox.
52 check = self.overridePythonAttrs { doCheck = true; };
55 pythonImportsCheck = [ "jaxtyping" ];
58 description = "Type annotations and runtime checking for JAX arrays and PyTrees";
59 homepage = "https://github.com/google/jaxtyping";
60 license = licenses.mit;
61 maintainers = with maintainers; [ GaetanLepage ];