1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, pytest 6, unicodecsv 7}: 8 9buildPythonPackage rec { 10 pname = "jellyfish"; 11 version = "0.8.9"; 12 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "90d25e8f5971ebbcf56f216ff5bb65d6466572b78908c88c47ab588d4ea436c2"; 18 }; 19 20 checkInputs = [ pytest unicodecsv ]; 21 22 meta = { 23 homepage = "https://github.com/sunlightlabs/jellyfish"; 24 description = "Approximate and phonetic matching of strings"; 25 maintainers = with lib.maintainers; [ koral ]; 26 }; 27}