Merge pull request #228611 from fabaff/annoy-bump

python310Packages.annoy: 1.17.1 -> 1.17.2

authored by Fabian Affolter and committed by GitHub c7c6eb33 c2f130fd

+3 -2
+3 -2
pkgs/development/python-modules/annoy/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "annoy"; 11 - version = "1.17.1"; 11 + version = "1.17.2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-vxd9vq+4H2OyrB4SRrHyairMguc7pGY4c00p2CWBIto="; 18 + hash = "sha256-5nv7uDfRMG2kVVyIOGDHshXLMqhk5AAiKS1YR60foLs="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ ··· 33 33 meta = with lib; { 34 34 description = "Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk"; 35 35 homepage = "https://github.com/spotify/annoy"; 36 + changelog = "https://github.com/spotify/annoy/releases/tag/v${version}"; 36 37 license = licenses.asl20; 37 38 maintainers = with maintainers; [ timokau ]; 38 39 };