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