Unverified Commit 5fa3863a authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.simsimd: 6.4.0 -> 6.4.1 (#395305)

parents df46c58b efd5d7b0
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

buildPythonPackage rec {
  pname = "simsimd";
  version = "6.4.0";
  version = "6.4.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ashvardanian";
    repo = "simsimd";
    tag = "v${version}";
    hash = "sha256-o9GhLfFuH3mTE4V6DGyGwU7o3EfP4iEoxUfFvR5gtLc=";
    hash = "sha256-4t3uCxQG0zSa2JLKE1d2G3OQLr+8E3ZDNnTf9LAYXsk=";
  };

  build-system = [
@@ -44,7 +44,11 @@ buildPythonPackage rec {
    changelog = "https://github.com/ashvardanian/SimSIMD/releases/tag/${src.tag}";
    description = "Portable mixed-precision BLAS-like vector math library for x86 and ARM";
    homepage = "https://github.com/ashvardanian/simsimd";
    license = lib.licenses.asl20;
    license = with lib.licenses; [
      asl20
      # or
      bsd3
    ];
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}