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