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

This commit is contained in:
dotlambda
2025-04-08 08:42:14 -07:00
committed by GitHub
@@ -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 ];
};
}