2019-01-25 15:31:02 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, python-Levenshtein, pycodestyle, hypothesis, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fuzzywuzzy";
|
2020-02-21 03:29:40 +00:00
|
|
|
version = "0.18.0";
|
2019-01-25 15:31:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-21 03:29:40 +00:00
|
|
|
sha256 = "1s00zn75y2dkxgnbw8kl8dw4p1mc77cv78fwfa4yb0274s96w0a5";
|
2019-01-25 15:31:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ python-Levenshtein ];
|
|
|
|
checkInputs = [ pycodestyle hypothesis pytest ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Fuzzy string matching for Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/seatgeek/fuzzywuzzy";
|
2019-01-25 15:31:02 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ earvstedt ];
|
|
|
|
};
|
|
|
|
}
|