depot/third_party/nixpkgs/pkgs/development/python-modules/annoy/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
611 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, h5py
, nose
}:
buildPythonPackage rec {
version = "1.16.3";
pname = "annoy";
src = fetchPypi {
inherit pname version;
sha256 = "fe2779664bd8846f2d67191a7e6010b8df890ac4586336748fd0697f31654379";
};
nativeBuildInputs = [ h5py ];
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 ];
};
}