4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
901 B
Nix
35 lines
901 B
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, scikitimage }:
|
|
|
|
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 lib; {
|
|
homepage = "https://github.com/ascribe/image-match";
|
|
description = "Quickly search over billions of images";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ cmcdragonkai ];
|
|
};
|
|
}
|