Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 524 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, pytest 6, unicodecsv 7}: 8 9buildPythonPackage rec { 10 pname = "jellyfish"; 11 version = "0.8.2"; 12 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "02q3d9b933hf8lyvg7w7lgmhij8bjs748vjmsfxhabai04a796d4"; 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}