mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
python metaphone: init at 0.6 (#25868)
* metaphone: init at 0.6 * metaphone: add self as maintainer
This commit is contained in:
parent
376fe51da2
commit
9d86b49f2a
|
@ -452,6 +452,7 @@
|
|||
rht = "rht <rhtbot@protonmail.com>";
|
||||
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
|
||||
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
|
||||
ris = "Robert Scott <code@humanleg.org.uk>";
|
||||
rlupton20 = "Richard Lupton <richard.lupton@gmail.com>";
|
||||
rnhmjoj = "Michele Guerini Rocco <micheleguerinirocco@me.com>";
|
||||
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
|
||||
|
|
23
pkgs/development/python-modules/metaphone/default.nix
Normal file
23
pkgs/development/python-modules/metaphone/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Metaphone";
|
||||
version = "0.6";
|
||||
name = "metaphone-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "09ysaczwh2rlsqq9j5fz7m4pq2fs0axp5vvivrpfrdvclvffl2xd";
|
||||
};
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
buildInputs = [ nose ];
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
|
@ -14022,6 +14022,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
metaphone = callPackage ../development/python-modules/metaphone { };
|
||||
|
||||
mezzanine = buildPythonPackage rec {
|
||||
version = "3.1.10";
|
||||
name = "mezzanine-${version}";
|
||||
|
|
Loading…
Reference in a new issue