python.pkgs.annoy: init at 1.15.2
This commit is contained in:
parent
9aa60e6b9b
commit
3342953dff
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/annoy/default.nix
Normal file
26
pkgs/development/python-modules/annoy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue