1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, unicodecsv 6}: 7 8buildPythonPackage rec { 9 pname = "jellyfish"; 10 version = "0.6.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "5104e45a2b804b48a46a92a5e6d6e86830fe60ae83b1da32c867402c8f4c2094"; 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}