linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jellyfish / default.nix
blob9f4b57ba8979cd58b1860b438224ddc6bd642d5c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , pytest
6 , unicodecsv
7 }:
9 buildPythonPackage rec {
10   pname = "jellyfish";
11   version = "0.8.2";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "02q3d9b933hf8lyvg7w7lgmhij8bjs748vjmsfxhabai04a796d4";
18   };
20   checkInputs = [ pytest unicodecsv ];
22   meta = {
23     homepage = "https://github.com/sunlightlabs/jellyfish";
24     description = "Approximate and phonetic matching of strings";
25     maintainers = with lib.maintainers; [ koral ];
26   };