1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5, pytest
6, unicodecsv
7}:
8
9buildPythonPackage rec {
10 pname = "jellyfish";
11 version = "0.7.1";
12
13 disabled = !isPy3k;
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1hd1xzw22g1cp2dpf5bbpg8a7iac2v9hw0xrj5n5j83inh5n99br";
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}