2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchPypi, nose }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "metaphone";
|
|
|
|
version = "0.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "Metaphone";
|
|
|
|
inherit version;
|
|
|
|
sha256 = "09ysaczwh2rlsqq9j5fz7m4pq2fs0axp5vvivrpfrdvclvffl2xd";
|
|
|
|
};
|
|
|
|
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/oubiwann/metaphone";
|
|
|
|
description = "A Python implementation of the metaphone and double metaphone algorithms";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ris ];
|
|
|
|
};
|
|
|
|
}
|