Skip to content

Commit 9d86b49

Browse files
risicleMic92
authored andcommittedMay 20, 2017
python metaphone: init at 0.6 (#25868)
* metaphone: init at 0.6 * metaphone: add self as maintainer
1 parent 376fe51 commit 9d86b49

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
 

‎lib/maintainers.nix

+1
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,7 @@
452452
rht = "rht <rhtbot@protonmail.com>";
453453
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
454454
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
455+
ris = "Robert Scott <code@humanleg.org.uk>";
455456
rlupton20 = "Richard Lupton <richard.lupton@gmail.com>";
456457
rnhmjoj = "Michele Guerini Rocco <micheleguerinirocco@me.com>";
457458
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, nose }:
2+
3+
buildPythonPackage rec {
4+
pname = "Metaphone";
5+
version = "0.6";
6+
name = "metaphone-${version}";
7+
8+
src = fetchPypi {
9+
inherit pname version;
10+
sha256 = "09ysaczwh2rlsqq9j5fz7m4pq2fs0axp5vvivrpfrdvclvffl2xd";
11+
};
12+
13+
disabled = isPy3k;
14+
15+
buildInputs = [ nose ];
16+
17+
meta = with stdenv.lib; {
18+
homepage = https://github.com/oubiwann/metaphone;
19+
description = "A Python implementation of the metaphone and double metaphone algorithms";
20+
license = licenses.bsd3;
21+
maintainers = with maintainers; [ ris ];
22+
};
23+
}

‎pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -14022,6 +14022,8 @@ in {
1402214022
};
1402314023
};
1402414024

14025+
metaphone = callPackage ../development/python-modules/metaphone { };
14026+
1402514027
mezzanine = buildPythonPackage rec {
1402614028
version = "3.1.10";
1402714029
name = "mezzanine-${version}";

0 commit comments

Comments
 (0)
Please sign in to comment.