1{ stdenv, buildPythonPackage, fetchPypi, python-Levenshtein, pycodestyle, hypothesis, pytest }:
2
3buildPythonPackage rec {
4 pname = "fuzzywuzzy";
5 version = "0.17.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "6f49de47db00e1c71d40ad16da42284ac357936fa9b66bea1df63fed07122d62";
10 };
11
12 propagatedBuildInputs = [ python-Levenshtein ];
13 checkInputs = [ pycodestyle hypothesis pytest ];
14
15 meta = with stdenv.lib; {
16 description = "Fuzzy string matching for Python";
17 homepage = https://github.com/seatgeek/fuzzywuzzy;
18 license = licenses.gpl2;
19 maintainers = with maintainers; [ earvstedt ];
20 };
21}