Merge pull request #280721 from fabaff/rotary-embedding-torch-fix

python311Packages.rotary-embedding-torch: add beartype
This commit is contained in:
Fabian Affolter 2024-01-14 23:54:55 +01:00 committed by GitHub
commit e6dad6ee45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
, wheel
# dependencies
, beartype
, einops
, torch
}:
@ -29,6 +30,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
beartype
einops
torch
];
@ -42,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Implementation of Rotary Embeddings, from the Roformer paper, in Pytorch";
homepage = "https://github.com/lucidrains/rotary-embedding-torch";
changelog = "https://github.com/lucidrains/rotary-embedding-torch/releases/tag/${version}";
license = licenses.mit;
maintainers = teams.tts.members;
};