python3Packages.jarowinkler: init at 1.0.2
This commit is contained in:
parent
c2eae2011c
commit
5005b42561
54
pkgs/development/python-modules/jarowinkler/default.nix
Normal file
54
pkgs/development/python-modules/jarowinkler/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, cython
|
||||
, rapidfuzz-capi
|
||||
, scikit-build
|
||||
, hypothesis
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jarowinkler";
|
||||
version = "1.0.2";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "maxbachmann";
|
||||
repo = "JaroWinkler";
|
||||
rev = "v${version}";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-zVAcV6xxqyfXRUcyWo9PcOdagcexJc/D5k4g5ag3hbY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
cython
|
||||
rapidfuzz-capi
|
||||
scikit-build
|
||||
];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
# import from $out
|
||||
rm -r jarowinkler
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "jarowinkler" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for fast approximate string matching using Jaro and Jaro-Winkler similarity";
|
||||
homepage = "https://github.com/maxbachmann/JaroWinkler";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -4215,6 +4215,8 @@ in {
|
||||
|
||||
jaraco_text = callPackage ../development/python-modules/jaraco_text { };
|
||||
|
||||
jarowinkler = callPackage ../development/python-modules/jarowinkler { };
|
||||
|
||||
javaobj-py3 = callPackage ../development/python-modules/javaobj-py3 { };
|
||||
|
||||
javaproperties = callPackage ../development/python-modules/javaproperties { };
|
||||
|
Loading…
Reference in New Issue
Block a user