mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
python.pkgs.annoy: init at 1.15.2
This commit is contained in:
parent
9aa60e6b9b
commit
3342953dff
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 New Issue
Block a user