1{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
2
3buildPythonPackage rec {
4 name = "${pname}-${version}";
5 pname = "Unidecode";
6 version = "0.04.21";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0lfhp9c5xrbpjvbpr12ji52g1lx04404bzzdg6pvabhzisw6l2i8";
11 };
12
13 LC_ALL="en_US.UTF-8";
14
15 buildInputs = [ glibcLocales ];
16
17 meta = with stdenv.lib; {
18 homepage = http://pypi.python.org/pypi/Unidecode/;
19 description = "ASCII transliterations of Unicode text";
20 license = licenses.gpl2;
21 maintainers = with maintainers; [ domenkozar ];
22 };
23}