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