pythonPackages.image-match: init at 1.1.2
This commit is contained in:
parent
6ed3ea6e74
commit
5fba38d65c
34
pkgs/development/python-modules/image-match/default.nix
Normal file
34
pkgs/development/python-modules/image-match/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, dask, scikitimage, six }:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "image-match";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ascribe";
|
||||
repo = "image-match";
|
||||
rev = "1c5f3170555540bdf43ff8b8189c4e8c13a8b950";
|
||||
sha256 = "0vlmpidmhkpgdzw2k03x5layhijcrjpmyfd93yv2ls77ihz00ix5";
|
||||
};
|
||||
|
||||
buildInputs = [ pytestrunner ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
scikitimage
|
||||
];
|
||||
|
||||
# remove elasticsearch requirement due to version incompatibility
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "'elasticsearch>=5.0.0,<6.0.0'," ""
|
||||
'';
|
||||
|
||||
# tests cannot work without elasticsearch
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/ascribe/image-match;
|
||||
description = "Quickly search over billions of images";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ cmcdragonkai ];
|
||||
};
|
||||
}
|
@ -3131,6 +3131,8 @@ in {
|
||||
|
||||
};
|
||||
|
||||
image-match = callPackage ../development/python-modules/image-match { };
|
||||
|
||||
imbalanced-learn = callPackage ../development/python-modules/imbalanced-learn { };
|
||||
|
||||
immutables = callPackage ../development/python-modules/immutables {};
|
||||
|
Loading…
Reference in New Issue
Block a user