Unverified Commit 5d7854cc authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.x-transformers: 2.8.4 -> 2.9.2 (#452957)

parents 24a6fc77 98cc3659
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -19,14 +19,14 @@

buildPythonPackage rec {
  pname = "x-transformers";
  version = "2.8.4";
  version = "2.9.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "lucidrains";
    repo = "x-transformers";
    tag = version;
    hash = "sha256-EmZW57xWt62RTOGZ7vYE2YcyUqx1vldsb2874XR9UOo=";
    hash = "sha256-JxIcEGR28VxsosKsEFLpttT9JMeGwcJxjZiDXRhTv/o=";
  };

  build-system = [ hatchling ];
@@ -46,9 +46,10 @@ buildPythonPackage rec {
  meta = {
    description = "Concise but fully-featured transformer";
    longDescription = ''
      A simple but complete full-attention transformer with a set of promising experimental features from various papers
      A simple but complete full-attention transformer with a set of promising experimental features from various papers.
    '';
    homepage = "https://github.com/lucidrains/x-transformers";
    changelog = "https://github.com/lucidrains/x-transformers/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ByteSudoer ];
  };