mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
python312Packages.jaxtyping: 0.2.34 -> 0.2.36
Diff: https://github.com/patrick-kidger/jaxtyping/compare/v0.2.33...v0.2.36 Changelog: https://github.com/patrick-kidger/jaxtyping/releases/tag/v0.2.36
This commit is contained in:
parent
45533e4b16
commit
39e09b1673
@ -1,15 +1,11 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
hatchling,
|
||||
|
||||
# dependencies
|
||||
typeguard,
|
||||
|
||||
# tests
|
||||
cloudpickle,
|
||||
equinox,
|
||||
@ -24,23 +20,19 @@
|
||||
let
|
||||
self = buildPythonPackage rec {
|
||||
pname = "jaxtyping";
|
||||
version = "0.2.34";
|
||||
version = "0.2.36";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "jaxtyping";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-zkB8/+0PmBKDFhj9dd8QZ5Euglm+W3BBUM4dwFUYYW8=";
|
||||
hash = "sha256-TXhHh6Nka9TOnfFPaNyHmLdTkhzyFEY0mLSfoDf9KQc=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [ typeguard ];
|
||||
|
||||
pythonRelaxDeps = [ "typeguard" ];
|
||||
pythonImportsCheck = [ "jaxtyping" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
cloudpickle
|
||||
@ -64,8 +56,6 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "jaxtyping" ];
|
||||
|
||||
meta = {
|
||||
description = "Type annotations and runtime checking for JAX arrays and PyTrees";
|
||||
homepage = "https://github.com/google/jaxtyping";
|
||||
|
Loading…
Reference in New Issue
Block a user