Commit 948886b4 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 6038b015
Loading
Loading
Loading
Loading
+8 −11
Original line number Diff line number Diff line
@@ -5,9 +5,7 @@
  fetchFromGitHub,
  hatchling,
  pythonRelaxDepsHook,
  numpy,
  typeguard,
  typing-extensions,
  cloudpickle,
  equinox,
  ipython,
@@ -21,7 +19,7 @@
let
  self = buildPythonPackage rec {
    pname = "jaxtyping";
    version = "0.2.28";
    version = "0.2.31";
    pyproject = true;

    disabled = pythonOlder "3.9";
@@ -30,18 +28,16 @@ let
      owner = "google";
      repo = "jaxtyping";
      rev = "refs/tags/v${version}";
      hash = "sha256-xDFrgPecUIfCACg/xkMQ8G1+6hNiUUDg9eCZKNpNfzs=";
      hash = "sha256-kuGFzp8sDLq6J/qq8ap3lD3n1pABHurXcbRUtDQyWwE=";
    };

    nativeBuildInputs = [
    build-system = [
      hatchling
      pythonRelaxDepsHook
    ];

    propagatedBuildInputs = [
      numpy
    dependencies = [
      typeguard
      typing-extensions
    ];

    pythonRelaxDeps = [ "typeguard" ];
@@ -70,11 +66,12 @@ let

    pythonImportsCheck = [ "jaxtyping" ];

    meta = with lib; {
    meta = {
      description = "Type annotations and runtime checking for JAX arrays and PyTrees";
      homepage = "https://github.com/google/jaxtyping";
      license = licenses.mit;
      maintainers = with maintainers; [ GaetanLepage ];
      changelog = "https://github.com/patrick-kidger/jaxtyping/releases/tag/v${version}";
      license = lib.licenses.mit;
      maintainers = with lib.maintainers; [ GaetanLepage ];
    };
  };
in