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-06-12 17:47:02 +01:00
version = "0.6.1";
2018-01-01 14:59:56 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:02 +01:00
sha256 = "5104e45a2b804b48a46a92a5e6d6e86830fe60ae83b1da32c867402c8f4c2094";
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 ];
};
}