nixpkgs/pkgs/development/python-modules/jellyfish/default.nix

25 lines
502 B
Nix
Raw Normal View History

2018-01-01 14:59:56 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, unicodecsv
}:
buildPythonPackage rec {
pname = "jellyfish";
2018-01-01 15:00:47 +00:00
version = "0.5.6";
2018-01-01 14:59:56 +00:00
src = fetchPypi {
inherit pname version;
2018-01-01 15:00:47 +00:00
sha256 = "887a9a49d0caee913a883c3e7eb185f6260ebe2137562365be422d1316bd39c9";
2018-01-01 14:59:56 +00:00
};
checkInputs = [ pytest unicodecsv ];
meta = {
homepage = https://github.com/sunlightlabs/jellyfish;
description = "Approximate and phonetic matching of strings";
maintainers = with lib.maintainers; [ koral ];
};
}