python.pkgs.annoy: init at 1.15.2

This commit is contained in:
Timo Kaufmann 2019-05-25 14:56:14 +02:00
parent 9aa60e6b9b
commit 3342953dff
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
version = "1.15.2";
pname = "annoy";
src = fetchPypi {
inherit pname version;
sha256 = "1i5bkf8mwd1pyrbhfwncir2r8yq8s9qz5j13vv2qz92n9g57sr3m";
};
checkInputs = [
nose
];
meta = with stdenv.lib; {
description = "Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk";
homepage = https://github.com/spotify/annoy;
license = licenses.asl20;
maintainers = with maintainers; [ timokau ];
};
}

View file

@ -5274,6 +5274,8 @@ in {
sigtools = callPackage ../development/python-modules/sigtools { };
annoy = callPackage ../development/python-modules/annoy { };
clize = callPackage ../development/python-modules/clize { };
zerobin = callPackage ../development/python-modules/zerobin { };