nixpkgs/pkgs/development/python-modules/annoy/default.nix

30 lines
601 B
Nix
Raw Normal View History

{ lib
2019-05-25 13:56:14 +01:00
, buildPythonPackage
, fetchPypi
, h5py
2019-05-25 13:56:14 +01:00
, nose
}:
buildPythonPackage rec {
version = "1.17.0";
2019-05-25 13:56:14 +01:00
pname = "annoy";
src = fetchPypi {
inherit pname version;
sha256 = "9891e264041d1dcf3af42f67fbb16cb273c5404bc8c869d0915a3087f71d58dd";
2019-05-25 13:56:14 +01:00
};
nativeBuildInputs = [ h5py ];
2019-05-25 13:56:14 +01:00
checkInputs = [
nose
];
meta = with lib; {
2019-05-25 13:56:14 +01:00
description = "Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk";
homepage = "https://github.com/spotify/annoy";
2019-05-25 13:56:14 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ timokau ];
};
}