mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
565 B
Nix
24 lines
565 B
Nix
{ lib, buildPythonPackage, isPy3k, fetchPypi, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "metaphone";
|
|
version = "0.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "Metaphone";
|
|
inherit version;
|
|
sha256 = "09ysaczwh2rlsqq9j5fz7m4pq2fs0axp5vvivrpfrdvclvffl2xd";
|
|
};
|
|
|
|
disabled = isPy3k;
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/oubiwann/metaphone";
|
|
description = "A Python implementation of the metaphone and double metaphone algorithms";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ris ];
|
|
};
|
|
}
|